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 03:13:26 -07:00
name = "strace-${version}";
2017-06-08 10:41:55 -07:00
version = "4.17";
src = fetchurl {
url = "mirror://sourceforge/strace/${name}.tar.xz";
2017-06-08 10:41:55 -07:00
sha256 = "06bl4dld5fk4a3iiq4pyrkm6sh63599ah8dmds0glg5vbw45pww1";
};
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 11:55:44 -08:00
maintainers = with maintainers; [ mornfall jgeerds globin ];
};
}