nixpkgs/pkgs/os-specific/linux/extrace/default.nix

29 lines
723 B
Nix
Raw Normal View History

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