Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
28 lines
738 B
Nix
28 lines
738 B
Nix
{ lib, stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "extrace";
|
|
version = "0.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "leahneukirchen";
|
|
repo = "extrace";
|
|
rev = "v${version}";
|
|
hash = "sha256-Jy/Ac3NcqBkW0kHyypMAVUGAQ41qWM96BbLAym06ogM=";
|
|
};
|
|
|
|
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
|
|
|
postInstall = ''
|
|
install -dm755 "$out/share/licenses/extrace/"
|
|
install -m644 LICENSE "$out/share/licenses/extrace/LICENSE"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/leahneukirchen/extrace";
|
|
description = "Trace exec() calls system-wide";
|
|
license = with licenses; [ gpl2Plus bsd2 ];
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.leahneukirchen ];
|
|
};
|
|
}
|