uhubctl: fix darwin build

This commit is contained in:
Karolis Stasaitis 2024-12-03 18:02:51 +01:00
parent 6d6744357f
commit c496490561

View File

@ -1,6 +1,8 @@
{ lib { lib
, stdenv , stdenv
, fetchFromGitHub , fetchFromGitHub
, which
, pkg-config
, libusb1 , libusb1
}: }:
@ -15,6 +17,8 @@ stdenv.mkDerivation rec {
sha256 = "sha256-mpeDePHLsa4sGe2+8X9KQ8AYn7wtybDnaZzxnf4oETQ="; sha256 = "sha256-mpeDePHLsa4sGe2+8X9KQ8AYn7wtybDnaZzxnf4oETQ=";
}; };
nativeBuildInputs = [ which pkg-config ];
buildInputs = [ libusb1 ]; buildInputs = [ libusb1 ];
installFlags = [ "prefix=${placeholder "out"}" ]; installFlags = [ "prefix=${placeholder "out"}" ];
@ -23,7 +27,7 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/mvp/uhubctl"; homepage = "https://github.com/mvp/uhubctl";
description = "Utility to control USB power per-port on smart USB hubs"; description = "Utility to control USB power per-port on smart USB hubs";
license = licenses.gpl2Only; license = licenses.gpl2Only;
maintainers = with maintainers; [ prusnak ]; maintainers = with maintainers; [ prusnak carlossless ];
platforms = with platforms; linux ++ darwin; platforms = with platforms; linux ++ darwin;
mainProgram = "uhubctl"; mainProgram = "uhubctl";
}; };