nixpkgs/pkgs/development/tools/misc/patchelf/default.nix
Eelco Dolstra 5b6b8d3e3e * Use the latest patchelf. This fixes broken gconv modules (e.g.,
$glibc/lib/gconv/ISO-2022-JP.so has an RPATH of `$ORIGIN' so that it
  can find glibc/lib/gconv/libJIS.so; `$ORIGIN' should not be filtered
  out of the RPATH).

svn path=/nixpkgs/trunk/; revision=2290
2005-02-23 14:15:33 +00:00

10 lines
245 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "patchelf-0.1pre2286";
src = fetchurl {
url = http://catamaran.labs.cs.uu.nl/dist/nix/patchelf-0.1pre2286/patchelf-0.1pre2286.tar.gz;
md5 = "2b1377e6745c239255b3f4a6ba6c0c87";
};
}