mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 06:31:02 +00:00
xow: fix build
It was using libusb-compat instead of libusb1, and the former no longer propagates the latter.
This commit is contained in:
parent
6a99952795
commit
b036be7c81
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, libusb }:
|
||||
{ stdenv, fetchFromGitHub, libusb1 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "xow";
|
||||
|
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
|||
"SYSDDIR=${placeholder ''out''}/lib/systemd/system"
|
||||
];
|
||||
enableParallelBuilding = true;
|
||||
buildInputs = [ libusb ];
|
||||
buildInputs = [ libusb1 ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/medusalix/xow";
|
||||
|
|
Loading…
Reference in a new issue