mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
extrace: init at 0.7
This commit is contained in:
parent
24b1f7b145
commit
23336fb44a
2 changed files with 30 additions and 0 deletions
28
pkgs/os-specific/linux/extrace/default.nix
Normal file
28
pkgs/os-specific/linux/extrace/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue