biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / http / apache-modules / mod_dnssd / default.nix
blob7f574f9fd9629158fb79984560cf35f952d79809
1 { lib, stdenv, fetchurl, fetchpatch, pkg-config, apacheHttpd, apr, avahi }:
3 stdenv.mkDerivation rec {
4   pname = "mod_dnssd";
5   version = "0.6";
7   src = fetchurl {
8     url = "http://0pointer.de/lennart/projects/mod_dnssd/${pname}-${version}.tar.gz";
9     sha256 = "2cd171d76eba398f03c1d5bcc468a1756f4801cd8ed5bd065086e4374997c5aa";
10   };
12   configureFlags = [ "--disable-lynx" ];
14   nativeBuildInputs = [ pkg-config ];
15   buildInputs = [ apacheHttpd avahi apr ];
17   patches = [ (fetchpatch {
18     url = "http://bazaar.launchpad.net/~ubuntu-branches/ubuntu/vivid/mod-dnssd/vivid/download/package-import%40ubuntu.com-20130530193334-kqebiy78q534or5k/portforapache2.4.pat-20130530222510-7tlw5btqchd04edb-3/port-for-apache2.4.patch";
19     sha256 = "1hgcxwy1q8fsxfqyg95w8m45zbvxzskf1jxd87ljj57l7x1wwp4r";
20   }) ];
22   installPhase = ''
23     runHook preInstall
25     mkdir -p $out/modules
26     cp src/.libs/mod_dnssd.so $out/modules
28     runHook postInstall
29   '';
31   preFixup = ''
32     # TODO: Packages in non-standard directories not stripped.
33     # https://github.com/NixOS/nixpkgs/issues/141554
34     stripDebugList=modules
35   '';
37   meta = with lib; {
38     homepage = "https://0pointer.de/lennart/projects/mod_dnssd";
39     description = "Provide Zeroconf support via DNS-SD using Avahi";
40     license = licenses.asl20;
41     platforms = platforms.linux;
42     maintainers = with maintainers; [ ];
43   };