nixpkgs/pkgs/development/tools/misc/strace/default.nix

19 lines
400 B
Nix
Raw Normal View History

{ stdenv, fetchurl, perl }:
stdenv.mkDerivation rec {
2012-08-11 00:23:53 +02:00
name = "strace-4.7";
src = fetchurl {
url = "mirror://sourceforge/strace/${name}.tar.xz";
2012-08-11 00:23:53 +02:00
sha256 = "158iwk0pl2mfw93m1843xb7a2zb8p6lh0qim07rca6f1ff4dk764";
};
buildNativeInputs = [ perl ];
meta = {
homepage = http://strace.sourceforge.net/;
description = "A system call tracer for Linux";
license = "bsd";
};
}