treewide: replace daemon with enableDaemon
broken with the introducation of "daemon" in https://github.com/NixOS/nixpkgs/commit/96ffba10f5c959656314998f667f4999406b4144
This commit is contained in:
@@ -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")
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user