mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
extrace: init at 0.7
This commit is contained in:
parent
24b1f7b145
commit
23336fb44a
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 { };
|
ebtables = callPackage ../os-specific/linux/ebtables { };
|
||||||
|
|
||||||
|
extrace = callPackage ../os-specific/linux/extrace { };
|
||||||
|
|
||||||
facetimehd-firmware = callPackage ../os-specific/linux/firmware/facetimehd-firmware { };
|
facetimehd-firmware = callPackage ../os-specific/linux/firmware/facetimehd-firmware { };
|
||||||
|
|
||||||
fatrace = callPackage ../os-specific/linux/fatrace { };
|
fatrace = callPackage ../os-specific/linux/fatrace { };
|
||||||
|
Loading…
Reference in New Issue
Block a user