add strace (for real)

svn path=/nixpkgs/trunk/; revision=1219
This commit is contained in:
Armijn Hemel 2004-08-04 10:12:26 +00:00
parent 57b90cac23
commit a53a262a0c
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,3 @@
. $stdenv/setup
genericBuild

View 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";
};
}