1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/tools/misc/strace/default.nix
Eelco Dolstra ab3eeabfed Rename buildNativeInputs -> nativeBuildInputs
Likewise for propagatedBuildNativeInputs, etc.  "buildNativeInputs"
sounds like an imperative rather than a noun phrase.
2012-12-28 19:20:09 +01:00

19 lines
400 B
Nix

{ stdenv, fetchurl, perl }:
stdenv.mkDerivation rec {
name = "strace-4.7";
src = fetchurl {
url = "mirror://sourceforge/strace/${name}.tar.xz";
sha256 = "158iwk0pl2mfw93m1843xb7a2zb8p6lh0qim07rca6f1ff4dk764";
};
nativeBuildInputs = [ perl ];
meta = {
homepage = http://strace.sourceforge.net/;
description = "A system call tracer for Linux";
license = "bsd";
};
}