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

21 lines
517 B
Nix
Raw Normal View History

{ stdenv, fetchurl, perl }:
stdenv.mkDerivation rec {
2015-03-08 18:47:24 +01:00
name = "strace-4.10";
src = fetchurl {
url = "mirror://sourceforge/strace/${name}.tar.xz";
2015-03-08 18:47:24 +01:00
sha256 = "1qhfwijxvblwdvvm70f8bhzs4fpbzqmwwbkfp636brzrds30s676";
};
nativeBuildInputs = [ perl ];
meta = with stdenv.lib; {
homepage = http://strace.sourceforge.net/;
description = "A system call tracer for Linux";
license = licenses.bsd3;
platforms = platforms.linux;
2015-06-22 08:25:07 +02:00
maintainers = with maintainers; [ mornfall jgeerds ];
};
}