linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / misc / uhubctl / default.nix
blobf5bbe2de73f568123cc36c66e7610b022775acdf
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , libusb1
5 }:
7 stdenv.mkDerivation rec {
8   pname = "uhubctl";
9   version = "2.4.0";
11   src = fetchFromGitHub {
12     owner = "mvp";
13     repo = "uhubctl";
14     rev = "v${version}";
15     sha256 = "sha256-F3fOoZYnfIWMrESyVJ/9z6Vou1279avhs600rQayUVA=";
16   };
18   buildInputs = [ libusb1 ];
20   installFlags = [ "prefix=${placeholder "out"}" ];
22   meta = with lib; {
23     homepage = "https://github.com/mvp/uhubctl";
24     description = "Utility to control USB power per-port on smart USB hubs";
25     license = licenses.gpl2;
26     maintainers = with maintainers; [ prusnak ];
27     platforms = with platforms; linux ++ darwin;
28   };