apacheHttpd_2_2: remove

This commit is contained in:
Robin Gloster
2017-01-27 15:30:33 +01:00
parent 625680c9fc
commit 8769ddc823
5 changed files with 17 additions and 108 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, apacheHttpd_2_2, apr, avahi }:
{ stdenv, fetchurl, fetchpatch, pkgconfig, apacheHttpd, apr, avahi }:
stdenv.mkDerivation rec {
name = "mod_dnssd-0.6";
@@ -10,7 +10,12 @@ stdenv.mkDerivation rec {
configureFlags = [ "--disable-lynx" ];
buildInputs = [ pkgconfig apacheHttpd_2_2 avahi apr ];
buildInputs = [ pkgconfig apacheHttpd avahi apr ];
patches = [ (fetchpatch {
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";
sha256 = "1hgcxwy1q8fsxfqyg95w8m45zbvxzskf1jxd87ljj57l7x1wwp4r";
}) ];
installPhase = ''
mkdir -p $out/modules
@@ -25,4 +30,3 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ lethalman ];
};
}