about summary refs log tree commit diff
path: root/nixpkgs/pkgs/os-specific/linux/gt/default.nix
blob: 85897b72585ea221614ce7f0f15a4c30d5b9cdc6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ 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";
    license = with lib.licenses; [ asl20 ];
    maintainers = with lib.maintainers; [ lheckemann ];
    platforms = lib.platforms.linux;
  };
})