mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
add strace (for real)
svn path=/nixpkgs/trunk/; revision=1219
This commit is contained in:
parent
57b90cac23
commit
a53a262a0c
2 changed files with 14 additions and 0 deletions
3
pkgs/development/tools/misc/strace/builder.sh
Normal file
3
pkgs/development/tools/misc/strace/builder.sh
Normal file
|
@ -0,0 +1,3 @@
|
|||
. $stdenv/setup
|
||||
|
||||
genericBuild
|
11
pkgs/development/tools/misc/strace/default.nix
Normal file
11
pkgs/development/tools/misc/strace/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "strace-4.5.6";
|
||||
|
||||
builder = ./builder.sh;
|
||||
src = fetchurl {
|
||||
url = http://heanet.dl.sourceforge.net/sourceforge/strace/strace-4.5.6.tar.bz2;
|
||||
md5 = "2dd9d23430957a7ee0221efb28c66d1e";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue