mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
python3.pkgs.libiio: fix build
Add missing setuptools dependency.
This commit is contained in:
parent
eaf667bbf0
commit
ce0a59cb9f
1 changed files with 2 additions and 1 deletions
|
@ -7,6 +7,7 @@
|
|||
, python
|
||||
, libusb1
|
||||
, runtimeShell
|
||||
, lib
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
@ -32,7 +33,7 @@ stdenv.mkDerivation rec {
|
|||
python
|
||||
libxml2
|
||||
libusb1
|
||||
];
|
||||
] ++ lib.optional python.isPy3k python.pkgs.setuptools;
|
||||
|
||||
cmakeFlags = [
|
||||
"-DUDEV_RULES_INSTALL_DIR=${placeholder "out"}/lib/udev/rules.d"
|
||||
|
|
Loading…
Reference in a new issue