mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
avahi: add -compat option
This commit is contained in:
parent
19eedaf867
commit
6e802e3347
@ -8,7 +8,7 @@
|
||||
assert qt4Support -> qt4 != null;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "avahi-${version}";
|
||||
name = "avahi${stdenv.lib.optionalString withLibdnssdCompat "-compat"}-${version}";
|
||||
version = "0.7";
|
||||
|
||||
src = fetchurl {
|
||||
|
@ -847,6 +847,10 @@ in
|
||||
|
||||
avahi = callPackage ../development/libraries/avahi (config.avahi or {});
|
||||
|
||||
avahi-compat = callPackage ../development/libraries/avahi ((config.avahi or {}) // {
|
||||
withLibdnssdCompat = true;
|
||||
});
|
||||
|
||||
avro-c = callPackage ../development/libraries/avro-c { };
|
||||
|
||||
avro-cpp = callPackage ../development/libraries/avro-c++ { boost = boost160; };
|
||||
|
Loading…
Reference in New Issue
Block a user