Merge pull request #151919 from lheckemann/gt

gt: init at 2021-09-30
This commit is contained in:
Linus Heckemann 2022-01-25 14:35:37 +01:00 committed by GitHub
commit d6695c4046
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 55 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ stdenv, lib, fetchFromGitHub, cmake, bash-completion, pkg-config, libconfig, autoreconfHook }:
stdenv.mkDerivation {
pname = "libusbgx";
version = "unstable-2021-10-31";
src = fetchFromGitHub {
owner = "linux-usb-gadgets";
repo = "libusbgx";
rev = "060784424609d5a4e3bce8355f788c93f09802a5";
sha256 = "172qh8gva17jr18ldhf9zi960w2bqzmp030w6apxq57c9nv6d8k7";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ libconfig ];
meta = {
description = "C library encapsulating the kernel USB gadget-configfs userspace API functionality";
license = with lib.licenses; [
lgpl21Plus # library
gpl2Plus # examples
];
maintainers = with lib.maintainers; [ lheckemann ];
platforms = lib.platforms.linux;
};
}

View File

@ -0,0 +1,29 @@
{ stdenv, lib, fetchFromGitHub, cmake, bash-completion, pkg-config, libconfig
, asciidoc
, libusbgx
}:
stdenv.mkDerivation {
pname = "gt";
version = "unstable-2021-09-30";
src = fetchFromGitHub {
owner = "linux-usb-gadgets";
repo = "gt";
rev = "7247547a14b2d092dc03fd83218ae65c2f7ff7d6";
sha256 = "1has9q2sghd5vyi25l3h2hd4d315vvpld076iwwsg01fx4d9vjmg";
};
sourceRoot = "source";
preConfigure = ''
cmakeFlagsArray+=("-DBASH_COMPLETION_COMPLETIONSDIR=$out/share/bash-completions/completions")
'';
nativeBuildInputs = [ cmake pkg-config asciidoc ];
buildInputs = [ bash-completion libconfig libusbgx];
meta = {
description = "Linux command line tool for setting up USB gadgets using configfs";
license = with lib.licenses; [ asl20 ];
maintainers = with lib.maintainers; [ lheckemann ];
platforms = lib.platforms.linux;
};
}

View File

@ -18611,6 +18611,8 @@ with pkgs;
udev = systemdMinimal;
};
libusbgx = callPackage ../development/libraries/libusbgx { };
libusbmuxd = callPackage ../development/libraries/libusbmuxd { };
libutempter = callPackage ../development/libraries/libutempter { };
@ -22308,6 +22310,8 @@ with pkgs;
gradm = callPackage ../os-specific/linux/gradm { };
gt = callPackage ../os-specific/linux/gt { };
inherit (nodePackages) gtop;
hd-idle = callPackage ../os-specific/linux/hd-idle { };