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:
parent
e1b5f698cf
commit
93de3d1ab1
24
overlay/libusbgx/default.nix
Normal file
24
overlay/libusbgx/default.nix
Normal 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=";
|
||||
};
|
||||
}
|
@ -56,6 +56,7 @@ in
|
||||
make_ext4fs = callPackage ./make_ext4fs {};
|
||||
hardshutdown = callPackage ./hardshutdown {};
|
||||
bootlogd = callPackage ./bootlogd {};
|
||||
libusbgx = callPackage ./libusbgx {};
|
||||
|
||||
#
|
||||
# Hacks
|
||||
|
Loading…
Reference in New Issue
Block a user