summary refs log tree commit diff
path: root/pkgs/development/tools/misc/strace/default.nix
blob: bdf3a7d056164cf120a579450afd8886cd39bbc1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, perl }:

stdenv.mkDerivation rec {
  name = "strace-4.8";

  src = fetchurl {
    url = "mirror://sourceforge/strace/${name}.tar.xz";
    sha256 = "1y6pw4aj4rw5470lqks1ml0n8jh5xbhwr5c3gb00bj570wgjk4pl";
  };

  nativeBuildInputs = [ perl ];

  meta = with stdenv.lib; {
    homepage = http://strace.sourceforge.net/;
    description = "A system call tracer for Linux";
    license = licenses.bsd3;
    platforms = platforms.linux;
  };
}