mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
33 lines
912 B
Nix
33 lines
912 B
Nix
{ stdenv, lib, fetchFromGitHub, cmake, bash-completion, pkg-config, libconfig
|
|
, asciidoc
|
|
, libusbgx
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "gt";
|
|
version = "unstable-2022-05-08";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linux-usb-gadgets";
|
|
repo = "gt";
|
|
rev = "7f9c45d98425a27444e49606ce3cf375e6164e8e";
|
|
sha256 = "sha256-km4U+t4Id2AZx6GpH24p2WNmvV5RVjJ14sy8tWLCQsk=";
|
|
};
|
|
|
|
sourceRoot = "${finalAttrs.src.name}/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";
|
|
mainProgram = "gt";
|
|
license = with lib.licenses; [ asl20 ];
|
|
maintainers = [ ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|