nixpkgs/pkgs/development/tools/misc/patchelf/default.nix
Eelco Dolstra e6779a3701 * Use patchelf 0.3.
svn path=/nixpkgs/trunk/; revision=8767
2007-05-24 16:00:05 +00:00

16 lines
399 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "patchelf-0.3";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/nix/patchelf-0.3/patchelf-0.3.tar.bz2;
md5 = "20d77052ae559c60e6c5efb6ea95af9b";
};
meta = {
homepage = "http://nix.cs.uu.nl/patchelf.html";
license = "GPL";
description = "A small utility to modify the dynamic linker and RPATH of ELF executables";
};
}