summary refs log tree commit diff
path: root/pkgs/development/libraries/libftdi/1.x.nix
diff options
context:
space:
mode:
authorc0bw3b <c0bw3b@users.noreply.github.com>2018-11-25 18:20:42 +0100
committerc0bw3b <c0bw3b@users.noreply.github.com>2018-11-25 18:20:42 +0100
commit9762e2c3bd28d01a12c8fb5ecd70c91b2a4f4877 (patch)
treef178cdd1be846b9c3c406ecf145ed52ccdc5f776 /pkgs/development/libraries/libftdi/1.x.nix
parent2fbde72556c981b5005e2dbe8599b5d3adb5c13f (diff)
downloadnixpkgs-9762e2c3bd28d01a12c8fb5ecd70c91b2a4f4877.tar
nixpkgs-9762e2c3bd28d01a12c8fb5ecd70c91b2a4f4877.tar.gz
nixpkgs-9762e2c3bd28d01a12c8fb5ecd70c91b2a4f4877.tar.bz2
nixpkgs-9762e2c3bd28d01a12c8fb5ecd70c91b2a4f4877.tar.lz
nixpkgs-9762e2c3bd28d01a12c8fb5ecd70c91b2a4f4877.tar.xz
nixpkgs-9762e2c3bd28d01a12c8fb5ecd70c91b2a4f4877.tar.zst
nixpkgs-9762e2c3bd28d01a12c8fb5ecd70c91b2a4f4877.zip
confuse: remove and replace with libconfuse
- confuse is a duplicate of libconfuse
- upstream name is libconfuse so keep this one
- replace confuse with libconfuse in packages depending on it
Diffstat (limited to 'pkgs/development/libraries/libftdi/1.x.nix')
-rw-r--r--pkgs/development/libraries/libftdi/1.x.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/libftdi/1.x.nix b/pkgs/development/libraries/libftdi/1.x.nix
index b59bf9a06ac..1b00ff4c0fb 100644
--- a/pkgs/development/libraries/libftdi/1.x.nix
+++ b/pkgs/development/libraries/libftdi/1.x.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, cmake, pkgconfig, libusb1, confuse
+{ stdenv, fetchurl, cmake, pkgconfig, libusb1, libconfuse
 , cppSupport ? true, boost ? null
 , pythonSupport ? true, python ? null, swig ? null
 , docSupport ? true, doxygen ? null
@@ -16,8 +16,8 @@ stdenv.mkDerivation rec {
     sha256 = "0x0vncf6i92slgrn0h7ghkskqbglbs534220qa84d0qg114zndpc";
   };
 
-  nativeBuildInputs = [ pkgconfig ];
-  buildInputs = with stdenv.lib; [ cmake confuse ]
+  nativeBuildInputs = [ cmake pkgconfig ];
+  buildInputs = with stdenv.lib; [ libconfuse ]
     ++ optionals cppSupport [ boost ]
     ++ optionals pythonSupport [ python swig ]
     ++ optionals docSupport [ doxygen ];