nixpkgs/pkgs/development/libraries/libmd/default.nix

24 lines
776 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, autoreconfHook }:
2016-12-29 20:04:29 +00:00
stdenv.mkDerivation rec {
pname = "libmd";
2021-01-03 17:49:24 +00:00
version = "1.0.3";
2016-12-29 20:04:29 +00:00
src = fetchurl {
url = "https://archive.hadrons.org/software/${pname}/${pname}-${version}.tar.xz";
2021-01-03 17:49:24 +00:00
sha256 = "0jmga8y94h857ilra3qjaiax3wd5pd6mx1h120zhl9fcjmzhj0js";
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
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;
};
}