Added `boot.modprobeConfig.useUbuntuModuleBlacklist`. (#290330)
[NixPkgs.git] / pkgs / by-name / fd / fdm / package.nix
blobf0d65a03d8951115a53b9c812d673182ce7f6b29
1 { lib, stdenv, fetchFromGitHub, autoreconfHook, openssl, tdb, zlib, flex, bison }:
3 stdenv.mkDerivation rec {
4   pname = "fdm";
5   version = "2.2";
7   src = fetchFromGitHub {
8     owner = "nicm";
9     repo = pname;
10     rev = version;
11     hash = "sha256-Gqpz+N1ELU5jQpPJAG9s8J9UHWOJNhkT+s7+xuQazd0=";
12   };
14   nativeBuildInputs = [ autoreconfHook ];
15   buildInputs = [ openssl tdb zlib flex bison ];
17   postInstall = ''
18     install fdm-sanitize $out/bin
19     mkdir -p $out/share/doc/${pname}
20     install -m644 MANUAL $out/share/doc/${pname}
21     cp -R examples $out/share/doc/${pname}
22   '';
24   meta = with lib; {
25     description = "Mail fetching and delivery tool - should do the job of getmail and procmail";
26     maintainers = with maintainers; [ raskin ];
27     platforms = with platforms; linux ++ darwin;
28     homepage = "https://github.com/nicm/fdm";
29     downloadPage = "https://github.com/nicm/fdm/releases";
30     license = licenses.isc;
31   };