about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2017-05-11 13:45:00 +0800
committerPeter Hoeg <peter@hoeg.com>2017-05-11 13:45:05 +0800
commit83970f5cbcdb6ba8e7c6d48b6e78441fbd370546 (patch)
treec9ba89db5e4225c1cb002d3d3d103d98e374bf89 /pkgs/development
parentbd831b4a07fc332854071d47d1382ec689078e85 (diff)
downloadnixlib-83970f5cbcdb6ba8e7c6d48b6e78441fbd370546.tar
nixlib-83970f5cbcdb6ba8e7c6d48b6e78441fbd370546.tar.gz
nixlib-83970f5cbcdb6ba8e7c6d48b6e78441fbd370546.tar.bz2
nixlib-83970f5cbcdb6ba8e7c6d48b6e78441fbd370546.tar.lz
nixlib-83970f5cbcdb6ba8e7c6d48b6e78441fbd370546.tar.xz
nixlib-83970f5cbcdb6ba8e7c6d48b6e78441fbd370546.tar.zst
nixlib-83970f5cbcdb6ba8e7c6d48b6e78441fbd370546.zip
usb_modeswitch: remove unneeded dependencies
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/misc/usb-modeswitch/data.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/tools/misc/usb-modeswitch/data.nix b/pkgs/development/tools/misc/usb-modeswitch/data.nix
index a45db5fbcaf1..0ad79005d91e 100644
--- a/pkgs/development/tools/misc/usb-modeswitch/data.nix
+++ b/pkgs/development/tools/misc/usb-modeswitch/data.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, pkgconfig, libusb1, tcl, usb-modeswitch }:
+{ stdenv, fetchurl, tcl, usb-modeswitch }:
 
 stdenv.mkDerivation rec {
   name = "usb-modeswitch-data-${version}";
@@ -15,10 +15,9 @@ stdenv.mkDerivation rec {
     sed -i 's@usb_modeswitch@${usb-modeswitch}/bin/usb_modeswitch@g' 40-usb_modeswitch.rules
   '';
 
-  buildInputs = [ libusb1 usb-modeswitch ];
   # we add tcl here so we can patch in support for new devices by dropping config into
   # the usb_modeswitch.d directory
-  nativeBuildInputs = [ pkgconfig tcl ];
+  nativeBuildInputs = [ tcl ];
 
   meta = with stdenv.lib; {
     description = "Device database and the rules file for 'multi-mode' USB devices";