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

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

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

  buildNativeInputs = [ xz perl ];

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