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

24 lines
618 B
Nix
Raw Normal View History

{ stdenv, fetchurl, perl, libunwind }:
stdenv.mkDerivation rec {
2016-07-04 12:13:26 +02:00
name = "strace-${version}";
version = "4.12";
src = fetchurl {
url = "mirror://sourceforge/strace/${name}.tar.xz";
2016-07-04 12:13:26 +02:00
sha256 = "51144b78cb9ba22211b95a5aafe0af3694c0d575b25975d80ca9dd4dfd7c1e59";
};
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 ];
};
}