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