mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
brickd: request libusb1 directly
This commit is contained in:
parent
d0b9aa6fa2
commit
88048e3213
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchgit, libusb, pkgconfig, pmutils, udev} :
|
||||
{ stdenv, fetchgit, libusb1, pkgconfig, pmutils, udev} :
|
||||
|
||||
let
|
||||
|
||||
|
@ -22,7 +22,7 @@ stdenv.mkDerivation {
|
|||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ libusb pmutils udev ];
|
||||
buildInputs = [ libusb1 pmutils udev ];
|
||||
|
||||
# shell thing didn't work so i replaced it using nix
|
||||
prePatch = ''
|
||||
|
|
|
@ -5874,9 +5874,7 @@ in
|
|||
|
||||
briss = callPackage ../tools/graphics/briss { };
|
||||
|
||||
brickd = callPackage ../servers/brickd {
|
||||
libusb = libusb1;
|
||||
};
|
||||
brickd = callPackage ../servers/brickd { };
|
||||
|
||||
bully = callPackage ../tools/networking/bully {
|
||||
openssl = openssl_1_0_2;
|
||||
|
|
Loading…
Reference in a new issue