mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
f530ffbd45
out-of-tree: 2.0.4 > 2.1.1
31 lines
780 B
Nix
31 lines
780 B
Nix
{ lib, buildGoModule, fetchgit, qemu, podman, makeWrapper }:
|
|
|
|
buildGoModule rec {
|
|
pname = "out-of-tree";
|
|
version = "2.1.1";
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
src = fetchgit {
|
|
rev = "refs/tags/v${version}";
|
|
url = "https://code.dumpstack.io/tools/${pname}.git";
|
|
sha256 = "sha256-XzO8NU7A5m631PjAm0F/K7qLrD+ZDSdHXaNowGaZAPo=";
|
|
};
|
|
|
|
vendorHash = "sha256-p1dqzng3ak9lrnzrEABhE1TP1lM2Ikc8bmvp5L3nUp0=";
|
|
|
|
doCheck = false;
|
|
|
|
postFixup = ''
|
|
wrapProgram $out/bin/out-of-tree \
|
|
--prefix PATH : "${lib.makeBinPath [ qemu podman ]}"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "kernel {module, exploit} development tool";
|
|
homepage = "https://out-of-tree.io";
|
|
maintainers = [ maintainers.dump_stack ];
|
|
license = licenses.agpl3Plus;
|
|
};
|
|
}
|