1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 04:31:52 +00:00

* PatchELF 0.5pre15500. Needed for --force-rpath.

svn path=/nixpkgs/trunk/; revision=15951
This commit is contained in:
Eelco Dolstra 2009-06-13 16:10:24 +00:00
parent 7442d90d32
commit 143787ad74
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "patchelf-0.5pre15500";
src = fetchurl {
url = http://hydra.nixos.org/build/31016/download/1/patchelf-0.5pre15500.tar.bz2;
sha256 = "acc9acfc3756f8ec314b21efcd62d296ab2f74c057c2b715d3b13d521e24f5c5";
};
meta = {
homepage = http://nixos.org/patchelf.html;
license = "GPL";
description = "A small utility to modify the dynamic linker and RPATH of ELF executables";
};
}

View file

@ -2640,6 +2640,10 @@ let
inherit fetchurl stdenv;
});
patchelf05 = import ../development/tools/misc/patchelf/0.5.nix {
inherit fetchurl stdenv;
};
pmccabe = import ../development/tools/misc/pmccabe {
inherit fetchurl stdenv;
};