Skip to content

Commit

Permalink
patchelf: 0.9 -> 0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
domenkozar committed Jun 9, 2020
1 parent e0c970c commit 13a7557
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pkgs/development/tools/misc/patchelf/default.nix
@@ -1,16 +1,17 @@
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
name = "patchelf-0.9";
name = "patchelf-0.11";

src = fetchurl {
url = "https://nixos.org/releases/patchelf/${name}/${name}.tar.bz2";
sha256 = "a0f65c1ba148890e9f2f7823f4bedf7ecad5417772f64f994004f59a39014f83";
sha256 = "16ms3ijcihb88j3x6cl8cbvhia72afmfcphczb9cfwr0gbc22chx";
};

setupHook = [ ./setup-hook.sh ];

doCheck = false; # fails 8 out of 24 tests, problems when loading libc.so.6
# fails 8 out of 24 tests, problems when loading libc.so.6
doCheck = stdenv.name == "stdenv-linux" || stdenv.name == "stdenv-darwin";

meta = with stdenv.lib; {
homepage = "https://github.com/NixOS/patchelf/blob/master/README";
Expand Down

0 comments on commit 13a7557

Please sign in to comment.