From 7a1914356e6ab0c0e8a7a4ba06ec891f78301281 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sat, 29 Oct 2022 19:48:16 +0200 Subject: [PATCH] patchelf_0_9: drop From the commit messages in 2020 it's not clear why this package was added back. But since there are no consumers, let's drop it. --- pkgs/development/tools/misc/patchelf/0.9.nix | 17 ----------------- pkgs/top-level/all-packages.nix | 1 - 2 files changed, 18 deletions(-) delete mode 100644 pkgs/development/tools/misc/patchelf/0.9.nix diff --git a/pkgs/development/tools/misc/patchelf/0.9.nix b/pkgs/development/tools/misc/patchelf/0.9.nix deleted file mode 100644 index 142e6b0d7603..000000000000 --- a/pkgs/development/tools/misc/patchelf/0.9.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ stdenv, fetchurl, patchelf }: - -stdenv.mkDerivation rec { - pname = "patchelf"; - version = "0.9"; - - src = fetchurl { - url = "https://nixos.org/releases/patchelf/patchelf-${version}/patchelf-${version}.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; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index bc9750804988..1d72bd0113b0 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -17334,7 +17334,6 @@ with pkgs; patchelf_0_13 else patchelf_0_14; - patchelf_0_9 = callPackage ../development/tools/misc/patchelf/0.9.nix { }; patchelf_0_13 = callPackage ../development/tools/misc/patchelf/0.13.nix { patchelf = patchelf_0_14; };