summary refs log tree commit diff
path: root/pkgs/development/tools/misc
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2022-04-05 21:27:48 +0200
committerGitHub <noreply@github.com>2022-04-05 21:27:48 +0200
commitebd9c4ae024e2eedbb7c62c63f740cf771a9c00b (patch)
tree4a19707a13c4771cda1d7acf45d3e04ac634f59f /pkgs/development/tools/misc
parent01ae557c1dca89daa1544a15c71016040a423cee (diff)
parent7513cd2f5a286751e06ff00d10ee632fe615f180 (diff)
downloadnixpkgs-ebd9c4ae024e2eedbb7c62c63f740cf771a9c00b.tar
nixpkgs-ebd9c4ae024e2eedbb7c62c63f740cf771a9c00b.tar.gz
nixpkgs-ebd9c4ae024e2eedbb7c62c63f740cf771a9c00b.tar.bz2
nixpkgs-ebd9c4ae024e2eedbb7c62c63f740cf771a9c00b.tar.lz
nixpkgs-ebd9c4ae024e2eedbb7c62c63f740cf771a9c00b.tar.xz
nixpkgs-ebd9c4ae024e2eedbb7c62c63f740cf771a9c00b.tar.zst
nixpkgs-ebd9c4ae024e2eedbb7c62c63f740cf771a9c00b.zip
Merge pull request #163362 from trofi/updater-patchelfUnstable
patchelfUnstable: 2021-11-16 -> 2022-02-21
Diffstat (limited to 'pkgs/development/tools/misc')
-rw-r--r--pkgs/development/tools/misc/patchelf/unstable.nix14
1 files changed, 10 insertions, 4 deletions
diff --git a/pkgs/development/tools/misc/patchelf/unstable.nix b/pkgs/development/tools/misc/patchelf/unstable.nix
index e6280586750..350424747e8 100644
--- a/pkgs/development/tools/misc/patchelf/unstable.nix
+++ b/pkgs/development/tools/misc/patchelf/unstable.nix
@@ -1,14 +1,14 @@
-{ lib, stdenv, fetchurl, autoreconfHook, fetchFromGitHub }:
+{ lib, stdenv, fetchurl, autoreconfHook, fetchFromGitHub, unstableGitUpdater }:
 
 stdenv.mkDerivation rec {
   pname = "patchelf";
-  version = "2021-11-16";
+  version = "unstable-2022-02-21";
 
   src = fetchFromGitHub {
     owner = "NixOS";
     repo = "patchelf";
-    rev = "a174cf3006baf31e0e9eaa62bc9adead93af63f7";
-    sha256 = "sha256-cKZ4DE70R5XiIqfnIVAl2s7a1bJxaaPpuCmxs3pxFRU=";
+    rev = "a35054504293f9ff64539850d1ed0bfd2f5399f2";
+    sha256 = "sha256-/hD/abmzWSkDhAWPLHiLQQ9cwJF8oFDuovNzRqs3Bho=";
   };
 
   # Drop test that fails on musl (?)
@@ -24,6 +24,12 @@ stdenv.mkDerivation rec {
 
   doCheck = !stdenv.isDarwin;
 
+  passthru = {
+    updateScript = unstableGitUpdater {
+      url = "https://github.com/NixOS/patchelf.git";
+    };
+  };
+
   meta = with lib; {
     homepage = "https://github.com/NixOS/patchelf";
     license = licenses.gpl3;