* strace 4.5.19.

svn path=/nixpkgs/branches/stdenv-updates/; revision=19561
This commit is contained in:
Eelco Dolstra
2010-01-20 10:55:30 +00:00
parent 1d6d92c9a1
commit 3407158873
2 changed files with 11 additions and 169 deletions
+11 -7
View File
@@ -1,12 +1,16 @@
{stdenv, fetchurl}:
{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "strace-4.5.18";
patches = [ ./strace-4.5.18-arm-syscalls.patch ];
stdenv.mkDerivation rec {
name = "strace-4.5.19";
src = fetchurl {
url = mirror://sourceforge/strace/strace-4.5.18.tar.bz2;
sha256 = "1l16vax3mn2wak288g1inmn30i49vlghnvfwr0z2rwh41r3vgrwm";
url = "mirror://sourceforge/strace/${name}.tar.bz2";
sha256 = "021x06jyvpg156kf6ndbd370nz4w3xp6q06pbk20w6wpks8wx5w9";
};
meta = {
homepage = http://strace.sourceforge.net/;
description = "A system call tracer for Linux";
license = "bsd";
};
}