linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / libmd / default.nix
blob7093376aa7e5306fec217a6b6a27707c942971c3
1 { lib, stdenv, fetchurl, autoreconfHook }:
3 stdenv.mkDerivation rec {
4   pname = "libmd";
5   version = "1.0.3";
7   src = fetchurl {
8     url = "https://archive.hadrons.org/software/${pname}/${pname}-${version}.tar.xz";
9     sha256 = "0jmga8y94h857ilra3qjaiax3wd5pd6mx1h120zhl9fcjmzhj0js";
10   };
12   nativeBuildInputs = [ autoreconfHook ];
14   meta = with lib; {
15     homepage = "https://www.hadrons.org/software/${pname}/";
16     changelog = "https://archive.hadrons.org/software/libmd/libmd-${version}.announce";
17     # Git: https://git.hadrons.org/cgit/libmd.git
18     description = "Message Digest functions from BSD systems";
19     license = with licenses; [ bsd3 bsd2 isc beerware publicDomain ];
20     maintainers = with maintainers; [ primeos ];
21     platforms = platforms.linux;
22   };