1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-01 03:32:26 +03:00

libusbgx: Init at 0.2.0-git

This commit is contained in:
Daniel Barlow 2022-10-03 23:06:54 -04:00 committed by Samuel Dionne-Riel
parent e1b5f698cf
commit 93de3d1ab1
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv
, fetchFromGitHub
, libconfig
, pkg-config
, autoreconfHook
}:
stdenv.mkDerivation {
pname = "libusbgx";
version = "unstable-2021-10-31";
nativeBuildInputs = [
pkg-config
autoreconfHook
];
buildInputs = [
libconfig
];
src = fetchFromGitHub {
owner = "linux-usb-gadgets";
repo = "libusbgx";
rev = "060784424609d5a4e3bce8355f788c93f09802a5";
hash = "sha256-Z6Jmtk3sFNyvMhwMcOvHS3BgUvzJwUZRyPIEtR+CWJw=";
};
}

View File

@ -56,6 +56,7 @@ in
make_ext4fs = callPackage ./make_ext4fs {};
hardshutdown = callPackage ./hardshutdown {};
bootlogd = callPackage ./bootlogd {};
libusbgx = callPackage ./libusbgx {};
#
# Hacks