summary refs log tree commit diff
diff options
context:
space:
mode:
authorIhar Hrachyshka <ihar@redhat.com>2019-04-01 07:26:03 -0700
committerIhar Hrachyshka <ihrachys@redhat.com>2019-08-30 13:17:58 -0700
commitf345dc1dadfc28119080f43f215ecb7ac80d26d4 (patch)
tree4b31d083a242b877c2d1111355fc278c62477781
parentd7fb15024fd2afffbd03b525937103f9d9e526f8 (diff)
downloadnixpkgs-f345dc1dadfc28119080f43f215ecb7ac80d26d4.tar
nixpkgs-f345dc1dadfc28119080f43f215ecb7ac80d26d4.tar.gz
nixpkgs-f345dc1dadfc28119080f43f215ecb7ac80d26d4.tar.bz2
nixpkgs-f345dc1dadfc28119080f43f215ecb7ac80d26d4.tar.lz
nixpkgs-f345dc1dadfc28119080f43f215ecb7ac80d26d4.tar.xz
nixpkgs-f345dc1dadfc28119080f43f215ecb7ac80d26d4.tar.zst
nixpkgs-f345dc1dadfc28119080f43f215ecb7ac80d26d4.zip
Bump patchelfUnstable to 0.10
This is to reflect the bump for regular version. We are leaving
patchelfUnstable b/c in the future we may need it to get the very latest
patches to patchelf again.
-rw-r--r--pkgs/development/tools/misc/patchelf/unstable.nix14
1 files changed, 6 insertions, 8 deletions
diff --git a/pkgs/development/tools/misc/patchelf/unstable.nix b/pkgs/development/tools/misc/patchelf/unstable.nix
index c673bd26109..401380b8301 100644
--- a/pkgs/development/tools/misc/patchelf/unstable.nix
+++ b/pkgs/development/tools/misc/patchelf/unstable.nix
@@ -1,14 +1,12 @@
-{ stdenv, fetchFromGitHub, autoreconfHook }:
+{ stdenv, fetchurl, autoreconfHook }:
 
 stdenv.mkDerivation rec {
-  pname = "patchelf";
-  version = "0.10-pre-20190328";
+  name = "patchelf-${version}";
+  version = "0.10";
 
-  src = fetchFromGitHub {
-    owner = "NixOS";
-    repo = "patchelf";
-    rev = "e1e39f3639e39360ceebb2f7ed533cede4623070";
-    sha256 = "09q1b1yqfzg1ih51v7qjh55vxfdbd8x5anycl8sfz6qy107wr02k";
+  src = fetchurl {
+    url = "https://nixos.org/releases/patchelf/${name}/${name}.tar.bz2";
+    sha256 = "1wzwvnlyf853hw9zgqq5522bvf8gqadk8icgqa41a5n7593csw7n";
   };
 
   # Drop test that fails on musl (?)