4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
31 lines
806 B
Nix
31 lines
806 B
Nix
{ lib, stdenv, buildGoModule, fetchgit, qemu, docker, which, makeWrapper }:
|
|
|
|
buildGoModule rec {
|
|
pname = "out-of-tree";
|
|
version = "1.4.0";
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
src = fetchgit {
|
|
rev = "refs/tags/v${version}";
|
|
url = "https://code.dumpstack.io/tools/${pname}.git";
|
|
sha256 = "1rn824l3dzh3xjxsbzzj053qg1abhzjimc8l73r0n5qrl44k2qk2";
|
|
};
|
|
|
|
vendorSha256 = "0kg5c4h7xnwfcfshrh5n76xv98wzr73kxzr8q65iphsjimbxcpy3";
|
|
|
|
doCheck = false;
|
|
|
|
postFixup = ''
|
|
wrapProgram $out/bin/out-of-tree \
|
|
--prefix PATH : "${stdenv.lib.makeBinPath [ qemu docker which ]}"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "kernel {module, exploit} development tool";
|
|
homepage = "https://out-of-tree.io";
|
|
maintainers = [ maintainers.dump_stack ];
|
|
license = licenses.agpl3Plus;
|
|
};
|
|
}
|