summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2022-04-22 09:42:51 +0000
committerAlyssa Ross <hi@alyssa.is>2022-04-22 17:26:43 +0000
commite22d0b49a9553861cdaee9f71b37db4baf2bb992 (patch)
treee8092ee5c49bab57f955b187c960fa4beb95b8be /pkgs/development/tools
parent3838a0a7e7ef2a3faebb908cbab58d75b513b51c (diff)
downloadnixpkgs-e22d0b49a9553861cdaee9f71b37db4baf2bb992.tar
nixpkgs-e22d0b49a9553861cdaee9f71b37db4baf2bb992.tar.gz
nixpkgs-e22d0b49a9553861cdaee9f71b37db4baf2bb992.tar.bz2
nixpkgs-e22d0b49a9553861cdaee9f71b37db4baf2bb992.tar.lz
nixpkgs-e22d0b49a9553861cdaee9f71b37db4baf2bb992.tar.xz
nixpkgs-e22d0b49a9553861cdaee9f71b37db4baf2bb992.tar.zst
nixpkgs-e22d0b49a9553861cdaee9f71b37db4baf2bb992.zip
patchelf: use 0.13.x on aarch64+musl
The C++ compiler in our musl bootstrap for aarch64 is too old to build
the latest version of patchelf, so we need to use the latest version
that builds with that compiler to get a new bootstrap.
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/misc/patchelf/0.13.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/tools/misc/patchelf/0.13.nix b/pkgs/development/tools/misc/patchelf/0.13.nix
index dd0eba508da..0111a4b065c 100644
--- a/pkgs/development/tools/misc/patchelf/0.13.nix
+++ b/pkgs/development/tools/misc/patchelf/0.13.nix
@@ -1,5 +1,10 @@
 { stdenv, fetchurl, patchelf }:
 
+# Note: this package is used for bootstrapping fetchurl, and thus
+# cannot use fetchpatch! All mutable patches (generated by GitHub or
+# cgit) that are needed here should be included directly in Nixpkgs as
+# files.
+
 stdenv.mkDerivation rec {
   pname = "patchelf";
   version = "0.13.1";