3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/out-of-tree/default.nix

31 lines
793 B
Nix
Raw Normal View History

2019-08-21 00:52:24 +01:00
{ stdenv, buildGoPackage, fetchgit, qemu, docker, which, makeWrapper }:
buildGoPackage rec {
pname = "out-of-tree";
2019-08-30 19:00:43 +01:00
version = "1.1.1";
2019-08-21 00:52:24 +01:00
buildInputs = [ makeWrapper ];
goPackagePath = "code.dumpstack.io/tools/${pname}";
src = fetchgit {
rev = "refs/tags/v${version}";
url = "https://code.dumpstack.io/tools/${pname}.git";
2019-08-30 19:00:43 +01:00
sha256 = "048jda3vng11mg62fd3d8vs9yjsp569zlfylnkqv8sb6wd1qn66d";
2019-08-21 00:52:24 +01:00
};
goDeps = ./deps.nix;
postFixup = ''
wrapProgram $bin/bin/out-of-tree \
--prefix PATH : "${stdenv.lib.makeBinPath [ qemu docker which ]}"
'';
meta = with stdenv.lib; {
description = "kernel {module, exploit} development tool";
homepage = https://out-of-tree.io;
maintainers = [ maintainers.dump_stack ];
license = licenses.agpl3Plus;
};
}