treewide: replace daemon with enableDaemon

broken with the introducation of "daemon" in

https://github.com/NixOS/nixpkgs/commit/96ffba10f5c959656314998f667f4999406b4144
This commit is contained in:
Matthew Bauer
2019-09-22 20:14:05 -04:00
parent 067b4dbb93
commit ad22b9084d
3 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
{ monolithic ? true # build monolithic amule
, daemon ? false # build amule daemon
, enableDaemon ? false # build amule daemon
, httpServer ? false # build web interface for the daemon
, client ? false # build amule remote gui
, fetchurl, stdenv, zlib, wxGTK, perl, cryptopp, libupnp, gettext, libpng ? null
@@ -32,7 +32,7 @@ mkDerivation rec {
"--disable-debug"
"--enable-optimize"
(stdenv.lib.enableFeature monolithic "monolithic")
(stdenv.lib.enableFeature daemon "amule-daemon")
(stdenv.lib.enableFeature enableDaemon "amule-daemon")
(stdenv.lib.enableFeature client "amule-gui")
(stdenv.lib.enableFeature httpServer "webserver")
];