about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libmd/default.nix
blob: e3dd0b206f1045e21dc9924e24f81e28c7b7ec40 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl, autoreconfHook }:

stdenv.mkDerivation rec {
  pname = "libmd";
  version = "1.0.3";

  src = fetchurl {
    url = "https://archive.hadrons.org/software/${pname}/${pname}-${version}.tar.xz";
    sha256 = "0jmga8y94h857ilra3qjaiax3wd5pd6mx1h120zhl9fcjmzhj0js";
  };

  nativeBuildInputs = [ autoreconfHook ];

  meta = with stdenv.lib; {
    homepage = "https://www.hadrons.org/software/${pname}/";
    changelog = "https://archive.hadrons.org/software/libmd/libmd-${version}.announce";
    # Git: https://git.hadrons.org/cgit/libmd.git
    description = "Message Digest functions from BSD systems";
    license = with licenses; [ bsd3 bsd2 isc beerware publicDomain ];
    maintainers = with maintainers; [ primeos ];
    platforms = platforms.linux;
  };
}