biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / out-of-tree / default.nix
blob72f7d8b76a6037c013669cd9b5dae2073a178911
1 { lib, buildGoModule, fetchgit, qemu, podman, makeWrapper }:
3 buildGoModule rec {
4   pname = "out-of-tree";
5   version = "2.1.1";
7   nativeBuildInputs = [ makeWrapper ];
9   src = fetchgit {
10     rev = "refs/tags/v${version}";
11     url = "https://code.dumpstack.io/tools/${pname}.git";
12     sha256 = "sha256-XzO8NU7A5m631PjAm0F/K7qLrD+ZDSdHXaNowGaZAPo=";
13   };
15   vendorHash = "sha256-p1dqzng3ak9lrnzrEABhE1TP1lM2Ikc8bmvp5L3nUp0=";
17   doCheck = false;
19   postFixup = ''
20     wrapProgram $out/bin/out-of-tree \
21       --prefix PATH : "${lib.makeBinPath [ qemu podman ]}"
22   '';
24   meta = with lib; {
25     description = "kernel {module, exploit} development tool";
26     mainProgram = "out-of-tree";
27     homepage = "https://out-of-tree.io";
28     maintainers = [ maintainers.dump_stack ];
29     license = licenses.agpl3Plus;
30   };