biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / mail / opensmtpd / libopensmtpd / default.nix
blobe9abdf0864f2d44d58f8d33eb39b594201d93c9d
1 { lib
2 , stdenv
3 , fetchurl
4 , libevent
5 , mandoc
6 }:
7 stdenv.mkDerivation rec {
8   pname = "libopensmtpd";
9   version = "0.7";
11   src = fetchurl {
12     url = "https://imperialat.at/releases/libopensmtpd-${version}.tar.gz";
13     hash = "sha256-zdbV4RpwY/kmXaQ6QjCcZGVUuLaLA5gsqEctvisIphM=";
14   };
16   patches = [ ./no-chown-while-installing.patch ];
18   buildInputs = [ libevent ];
20   nativeBuildInputs = [ mandoc ];
22   makeFlags = [
23     "-f Makefile.gnu"
24     "DESTDIR=$(out)"
25     "LOCALBASE="
26   ];
28   meta = with lib; {
29     description = "Library for creating OpenSMTPD filters";
30     homepage = "http://imperialat.at/dev/libopensmtpd/";
31     license = licenses.isc;
32     maintainers = with maintainers; [ malte-v ];
33   };