Skip to content

Commit 83970f5

Browse files
committedMay 11, 2017
usb_modeswitch: remove unneeded dependencies
1 parent bd831b4 commit 83970f5

File tree

1 file changed

+2
-3
lines changed
  • pkgs/development/tools/misc/usb-modeswitch

1 file changed

+2
-3
lines changed
 

‎pkgs/development/tools/misc/usb-modeswitch/data.nix

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{ stdenv, fetchurl, pkgconfig, libusb1, tcl, usb-modeswitch }:
1+
{ stdenv, fetchurl, tcl, usb-modeswitch }:
22

33
stdenv.mkDerivation rec {
44
name = "usb-modeswitch-data-${version}";
@@ -15,10 +15,9 @@ stdenv.mkDerivation rec {
1515
sed -i 's@usb_modeswitch@${usb-modeswitch}/bin/usb_modeswitch@g' 40-usb_modeswitch.rules
1616
'';
1717

18-
buildInputs = [ libusb1 usb-modeswitch ];
1918
# we add tcl here so we can patch in support for new devices by dropping config into
2019
# the usb_modeswitch.d directory
21-
nativeBuildInputs = [ pkgconfig tcl ];
20+
nativeBuildInputs = [ tcl ];
2221

2322
meta = with stdenv.lib; {
2423
description = "Device database and the rules file for 'multi-mode' USB devices";

0 commit comments

Comments
 (0)
Please sign in to comment.