summary refs log tree commit diff
path: root/pkgs/os-specific/linux/extrace/default.nix
blob: 23a9c68b5d5b82ad0d96eb1ed98ce35b2d789397 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
  pname = "extrace";
  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 ];
  };
}