extrace: init at 0.7

This commit is contained in:
Leah Neukirchen 2019-05-03 10:07:52 +02:00 committed by Lassulus
parent 24b1f7b145
commit 23336fb44a
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "extrace-${version}";
version = "0.7";
src = fetchFromGitHub {
owner = "leahneukirchen";
repo = "extrace";
rev = "v${version}";
sha256 = "0acspj3djspfvgr3ng5b61qws6v2md6b0lc5qkby10mqnfpkvq85";
};
makeFlags = "PREFIX=$(out)";
postInstall = ''
install -dm755 "$out/share/licenses/extrace/"
install -m644 LICENSE "$out/share/licenses/extrace/LICENSE"
'';
meta = with stdenv.lib; {
homepage = https://github.com/leahneukirchen/extrace;
description = "Trace exec() calls system-wide";
license = with licenses; [ gpl2 bsd2 ];
platforms = platforms.linux;
maintainers = [ maintainers.leahneukirchen ];
};
}

View file

@ -14825,6 +14825,8 @@ in
ebtables = callPackage ../os-specific/linux/ebtables { };
extrace = callPackage ../os-specific/linux/extrace { };
facetimehd-firmware = callPackage ../os-specific/linux/firmware/facetimehd-firmware { };
fatrace = callPackage ../os-specific/linux/fatrace { };