about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/patchelf
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-08-21 16:58:13 -0500
committerWill Dietz <w@wdtz.org>2018-08-21 17:01:29 -0500
commite12871912ec630597eecd4983f6f33c444e836b4 (patch)
tree315c0c563cb023cda1b9fab00ccd564e12544fa9 /pkgs/development/tools/misc/patchelf
parent1816f09f00b830729924adad92ace44363110c6a (diff)
downloadnixlib-e12871912ec630597eecd4983f6f33c444e836b4.tar
nixlib-e12871912ec630597eecd4983f6f33c444e836b4.tar.gz
nixlib-e12871912ec630597eecd4983f6f33c444e836b4.tar.bz2
nixlib-e12871912ec630597eecd4983f6f33c444e836b4.tar.lz
nixlib-e12871912ec630597eecd4983f6f33c444e836b4.tar.xz
nixlib-e12871912ec630597eecd4983f6f33c444e836b4.tar.zst
nixlib-e12871912ec630597eecd4983f6f33c444e836b4.zip
patchelf: 0.10-pre-20180108 -> 0.10-pre-20180509, minor touchup
Useful update-- adds support for accepting multiple files as arguments
and fixes handling of large executables (>2Gb).

While touching this, modify version to include more info.

Preserving version format previously used, although not usual style.
Diffstat (limited to 'pkgs/development/tools/misc/patchelf')
-rw-r--r--pkgs/development/tools/misc/patchelf/unstable.nix11
1 files changed, 8 insertions, 3 deletions
diff --git a/pkgs/development/tools/misc/patchelf/unstable.nix b/pkgs/development/tools/misc/patchelf/unstable.nix
index de68a4066d7d..8f4194d8973b 100644
--- a/pkgs/development/tools/misc/patchelf/unstable.nix
+++ b/pkgs/development/tools/misc/patchelf/unstable.nix
@@ -1,19 +1,24 @@
 { stdenv, fetchFromGitHub, autoreconfHook }:
 
 stdenv.mkDerivation rec {
-  name = "patchelf-0.10-pre-20180108";
+  name = "patchelf-${version}";
+  version = "0.10-pre-20180509";
 
   src = fetchFromGitHub {
     owner = "NixOS";
     repo = "patchelf";
-    rev = "48452cf6b4ccba1c1f47a09f4284a253634ab7d1";
-    sha256 = "1f1s8q3as3nrhcc1a8qc2z7imm644jfz44msn9sfv4mdynp2m2yb";
+    rev = "27ffe8ae871e7a186018d66020ef3f6162c12c69";
+    sha256 = "1sfkqsvwqqm2kdgkiddrxni86ilbrdw5my29szz81nj1m2j16asr";
   };
 
   # Drop test that fails on musl (?)
   postPatch = stdenv.lib.optionalString stdenv.hostPlatform.isMusl ''
     substituteInPlace tests/Makefile.am \
       --replace "set-rpath-library.sh" ""
+  '' +
+  # extend version identifier to more informative than "0.10".
+  ''
+    echo -n ${version} > version
   '';
 
   setupHook = [ ./setup-hook.sh ];