2021-01-21 18:00:13 +01:00
|
|
|
{ lib, stdenv, fetchurl, autoreconfHook }:
|
2016-12-29 21:04:29 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "libmd";
|
2021-01-03 18:49:24 +01:00
|
|
|
version = "1.0.3";
|
2016-12-29 21:04:29 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://archive.hadrons.org/software/${pname}/${pname}-${version}.tar.xz";
|
2021-01-03 18:49:24 +01:00
|
|
|
sha256 = "0jmga8y94h857ilra3qjaiax3wd5pd6mx1h120zhl9fcjmzhj0js";
|
2016-12-29 21:04:29 +01:00
|
|
|
};
|
|
|
|
|
2017-01-21 20:42:41 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2016-12-29 21:04:29 +01:00
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
meta = with lib; {
|
2016-12-29 21:04:29 +01:00
|
|
|
homepage = "https://www.hadrons.org/software/${pname}/";
|
2021-01-03 18:49:24 +01:00
|
|
|
changelog = "https://archive.hadrons.org/software/libmd/libmd-${version}.announce";
|
|
|
|
# Git: https://git.hadrons.org/cgit/libmd.git
|
2016-12-29 21:04:29 +01:00
|
|
|
description = "Message Digest functions from BSD systems";
|
|
|
|
license = with licenses; [ bsd3 bsd2 isc beerware publicDomain ];
|
|
|
|
maintainers = with maintainers; [ primeos ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|