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

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

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

  buildNativeInputs = [ perl ];

  meta = {
    homepage = http://strace.sourceforge.net/;
    description = "A system call tracer for Linux";
    license = "bsd";
  };
}