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 {
|
stdenv.mkDerivation rec {
|
||||||
pname = "xow";
|
pname = "xow";
|
||||||
|
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||||
"SYSDDIR=${placeholder ''out''}/lib/systemd/system"
|
"SYSDDIR=${placeholder ''out''}/lib/systemd/system"
|
||||||
];
|
];
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
buildInputs = [ libusb ];
|
buildInputs = [ libusb1 ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "https://github.com/medusalix/xow";
|
homepage = "https://github.com/medusalix/xow";
|
||||||
|
|
Loading…
Reference in New Issue
Block a user