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 12:13:26 +02:00
name = "strace-${version}";
2017-09-13 22:59:42 +02:00
version = "4.19";
src = fetchurl {
url = "mirror://sourceforge/strace/${name}.tar.xz";
2017-09-13 22:59:42 +02:00
sha256 = "10bjh2mrkvx41fk60b2iqv5b5k4r7a3qdsx04iyg904jqb3fp4vw";
};
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 20:55:44 +01:00
maintainers = with maintainers; [ mornfall jgeerds globin ];
};
}