mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 19:26:02 +00:00
17 lines
408 B
Nix
17 lines
408 B
Nix
|
{ stdenv, fetchurl, patchelf }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "patchelf-0.9";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://nixos.org/releases/patchelf/${name}/${name}.tar.bz2";
|
||
|
sha256 = "a0f65c1ba148890e9f2f7823f4bedf7ecad5417772f64f994004f59a39014f83";
|
||
|
};
|
||
|
|
||
|
setupHook = [ ./setup-hook.sh ];
|
||
|
|
||
|
doCheck = false; # fails 8 out of 24 tests, problems when loading libc.so.6
|
||
|
|
||
|
inherit (patchelf) meta;
|
||
|
}
|