mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
94bf409baf
svn path=/nixpkgs/trunk/; revision=22556
17 lines
458 B
Nix
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";
|
|
};
|
|
}
|