summary refs log tree commit diff
path: root/pkgs/development/misc
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2020-04-29 08:26:08 +0200
committerGitHub <noreply@github.com>2020-04-29 08:26:08 +0200
commit2b5e2ffe0a619f7315ff00bc2e16664ece2e4dbb (patch)
tree5f3e5ee7aa265b101c31d6194e9719ec3fab36f9 /pkgs/development/misc
parent6015d03ef1e16afe87f0bfb7cf7ef027472483da (diff)
parent45edbeb81d19c8687d11cc7d56c54f940b7dc1a7 (diff)
downloadnixpkgs-2b5e2ffe0a619f7315ff00bc2e16664ece2e4dbb.tar
nixpkgs-2b5e2ffe0a619f7315ff00bc2e16664ece2e4dbb.tar.gz
nixpkgs-2b5e2ffe0a619f7315ff00bc2e16664ece2e4dbb.tar.bz2
nixpkgs-2b5e2ffe0a619f7315ff00bc2e16664ece2e4dbb.tar.lz
nixpkgs-2b5e2ffe0a619f7315ff00bc2e16664ece2e4dbb.tar.xz
nixpkgs-2b5e2ffe0a619f7315ff00bc2e16664ece2e4dbb.tar.zst
nixpkgs-2b5e2ffe0a619f7315ff00bc2e16664ece2e4dbb.zip
Merge pull request #86165 from jtojnar/libusb-compat-rename
Diffstat (limited to 'pkgs/development/misc')
-rw-r--r--pkgs/development/misc/msp430/mspdebug.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/misc/msp430/mspdebug.nix b/pkgs/development/misc/msp430/mspdebug.nix
index 6bb6b683f55..3c7ff00151a 100644
--- a/pkgs/development/misc/msp430/mspdebug.nix
+++ b/pkgs/development/misc/msp430/mspdebug.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, libusb, readline ? null }:
+{ stdenv, fetchFromGitHub, libusb-compat-0_1, readline ? null }:
 
 let
   version = "0.25";
@@ -12,7 +12,7 @@ in stdenv.mkDerivation {
     sha256 = "0prgwb5vx6fd4bj12ss1bbb6axj2kjyriyjxqrzd58s5jyyy8d3c";
   };
 
-  buildInputs = [ libusb readline ];
+  buildInputs = [ libusb-compat-0_1 readline ];
   makeFlags = [ "PREFIX=$(out)" "INSTALL=install" ] ++
     (if readline == null then [ "WITHOUT_READLINE=1" ] else []);