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

24 lines
606 B
Nix
Raw Normal View History

{ stdenv, fetchurl, perl, libunwind }:
stdenv.mkDerivation rec {
2016-07-04 11:13:26 +01:00
name = "strace-${version}";
2017-04-09 19:44:44 +01:00
version = "4.16";
src = fetchurl {
url = "mirror://sourceforge/strace/${name}.tar.xz";
2017-04-09 19:44:44 +01:00
sha256 = "1vzhmpcy989i4k12q4cc438yal2ghhm6x7ychscjbhcf2yspqj4q";
};
nativeBuildInputs = [ perl ];
buildInputs = [ libunwind ]; # support -k
meta = with stdenv.lib; {
homepage = http://strace.sourceforge.net/;
description = "A system call tracer for Linux";
license = licenses.bsd3;
platforms = platforms.linux;
2015-12-27 19:55:44 +00:00
maintainers = with maintainers; [ mornfall jgeerds globin ];
};
}