summary refs log tree commit diff
path: root/pkgs/tools/networking/p2p
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-03-01 12:28:01 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-03-01 12:28:01 +0100
commite7dd8edf7ea285e5100aa1f88bbc512491dd2e3c (patch)
tree4cb43756de6271b0ec683dac374f80c52d266c5a /pkgs/tools/networking/p2p
parent2f6eae817858830cd79dba7213c9dce2fdab71eb (diff)
downloadnixpkgs-e7dd8edf7ea285e5100aa1f88bbc512491dd2e3c.tar
nixpkgs-e7dd8edf7ea285e5100aa1f88bbc512491dd2e3c.tar.gz
nixpkgs-e7dd8edf7ea285e5100aa1f88bbc512491dd2e3c.tar.bz2
nixpkgs-e7dd8edf7ea285e5100aa1f88bbc512491dd2e3c.tar.lz
nixpkgs-e7dd8edf7ea285e5100aa1f88bbc512491dd2e3c.tar.xz
nixpkgs-e7dd8edf7ea285e5100aa1f88bbc512491dd2e3c.tar.zst
nixpkgs-e7dd8edf7ea285e5100aa1f88bbc512491dd2e3c.zip
amule: remove unused inputs, cleanup
Diffstat (limited to 'pkgs/tools/networking/p2p')
-rw-r--r--pkgs/tools/networking/p2p/amule/default.nix7
1 files changed, 2 insertions, 5 deletions
diff --git a/pkgs/tools/networking/p2p/amule/default.nix b/pkgs/tools/networking/p2p/amule/default.nix
index 4ab93b7574a..78a07031e02 100644
--- a/pkgs/tools/networking/p2p/amule/default.nix
+++ b/pkgs/tools/networking/p2p/amule/default.nix
@@ -2,11 +2,8 @@
 , enableDaemon ? false # build amule daemon
 , httpServer ? false # build web interface for the daemon
 , client ? false # build amule remote gui
-, fetchFromGitHub, fetchpatch, stdenv, lib, zlib, wxGTK, perl, cryptopp, libupnp, gettext, libpng ? null
-, autoreconfHook, pkg-config, makeWrapper, libX11 ? null }:
-
-assert httpServer -> libpng != null;
-assert client -> libX11 != null;
+, fetchFromGitHub, stdenv, lib, zlib, wxGTK, perl, cryptopp, libupnp, gettext, libpng
+, autoreconfHook, pkg-config, makeWrapper, libX11 }:
 
 stdenv.mkDerivation rec {
   pname = "amule";