xow: fix build

It was using libusb-compat instead of libusb1, and the former no longer propagates the latter.
This commit is contained in:
Jan Tojnar 2020-04-02 07:54:14 +02:00
parent 6a99952795
commit b036be7c81
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

@ -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";