4b27d28701
This comes from: svn diff ^/nixpkgs/trunk/@18255 ^/nixpkgs/branches/stdenv-updates/ > diff patch -p0 < diff and then adding into svn all files new from the patch. trunk@18255 comes from the last time I updated stdenv-updates from trunk. svn path=/nixpkgs/stdenv-updates2/; revision=18272
13 lines
279 B
Nix
13 lines
279 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "strace-4.5.18";
|
|
|
|
patches = [ ./strace-4.5.18-arm-syscalls.patch ];
|
|
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/strace/strace-4.5.18.tar.bz2;
|
|
sha256 = "1l16vax3mn2wak288g1inmn30i49vlghnvfwr0z2rwh41r3vgrwm";
|
|
};
|
|
}
|