nixpkgs/pkgs/development/tools/misc/patchelf/0.6.nix
Rob Vermaas 94bf409baf updated patchelf 0.6 source to a link that should not be garbage collected
svn path=/nixpkgs/trunk/; revision=22556
2010-07-12 10:09:09 +00:00

17 lines
458 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "patchelf-0.6pre22275";
src = fetchurl {
url = "http://hydra.nixos.org/build/479721/download/3/patchelf-0.6pre22275.tar.gz";
sha256 = "ccce84285d145b300e5727b1562f4f334c53721fc7b388928c3fb5b9a90c7d80";
};
meta = {
homepage = http://nixos.org/patchelf.html;
license = "GPL";
description = "A small utility to modify the dynamic linker and RPATH of ELF executables";
};
}