Going back to 24.05

This commit is contained in:
Lyes Saadi 2024-10-29 15:32:06 +01:00
parent 7d06c6ce45
commit 6db56b42fb
No known key found for this signature in database
GPG key ID: 17418538BAA17767
7 changed files with 80 additions and 55 deletions

View file

@ -1,7 +1,7 @@
{
stdenv,
fetchFromGitHub,
libusb
libusb1
}:
stdenv.mkDerivation (final: {
@ -29,5 +29,5 @@ stdenv.mkDerivation (final: {
make install BINDIR_INS=$out/bin MANDIR_INS=$out/man
'';
buildInputs = [ libusb ];
buildInputs = [ libusb1 ];
})