summary refs log tree commit diff
diff options
context:
space:
mode:
authorppom <ppom@ppom.me>2021-09-21 13:04:09 +0200
committerppom <ppom@ppom.me>2021-09-21 13:04:09 +0200
commit896623dbe92e7b619badf22c5f5a0de2e338dc93 (patch)
tree2b09809896021da97b96e0f6a55d2930a30dd3c8
parent92519b2f6404bb9c24ebde808936c3870328e6df (diff)
downloadnixpkgs-896623dbe92e7b619badf22c5f5a0de2e338dc93.tar
nixpkgs-896623dbe92e7b619badf22c5f5a0de2e338dc93.tar.gz
nixpkgs-896623dbe92e7b619badf22c5f5a0de2e338dc93.tar.bz2
nixpkgs-896623dbe92e7b619badf22c5f5a0de2e338dc93.tar.lz
nixpkgs-896623dbe92e7b619badf22c5f5a0de2e338dc93.tar.xz
nixpkgs-896623dbe92e7b619badf22c5f5a0de2e338dc93.tar.zst
nixpkgs-896623dbe92e7b619badf22c5f5a0de2e338dc93.zip
patchelf: fix homepage
-rw-r--r--doc/stdenv/multiple-output.chapter.md2
-rw-r--r--pkgs/development/tools/misc/patchelf/default.nix2
-rw-r--r--pkgs/development/tools/misc/patchelf/unstable.nix2
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/stdenv/multiple-output.chapter.md b/doc/stdenv/multiple-output.chapter.md
index d04f83302ac..62bf543e51e 100644
--- a/doc/stdenv/multiple-output.chapter.md
+++ b/doc/stdenv/multiple-output.chapter.md
@@ -79,7 +79,7 @@ A commonly adopted convention in `nixpkgs` is that executables provided by the p
 
 The `glibc` package is a deliberate single exception to the “binaries first” convention. The `glibc` has `libs` as its first output allowing the libraries provided by `glibc` to be referenced directly (e.g. `${stdenv.glibc}/lib/ld-linux-x86-64.so.2`). The executables provided by `glibc` can be accessed via its `bin` attribute (e.g. `${stdenv.glibc.bin}/bin/ldd`).
 
-The reason for why `glibc` deviates from the convention is because referencing a library provided by `glibc` is a very common operation among Nix packages. For instance, third-party executables packaged by Nix are typically patched and relinked with the relevant version of `glibc` libraries from Nix packages (please see the documentation on [patchelf](https://github.com/NixOS/patchelf/blob/master/README) for more details).
+The reason for why `glibc` deviates from the convention is because referencing a library provided by `glibc` is a very common operation among Nix packages. For instance, third-party executables packaged by Nix are typically patched and relinked with the relevant version of `glibc` libraries from Nix packages (please see the documentation on [patchelf](https://github.com/NixOS/patchelf) for more details).
 
 ### File type groups {#multiple-output-file-type-groups}
 
diff --git a/pkgs/development/tools/misc/patchelf/default.nix b/pkgs/development/tools/misc/patchelf/default.nix
index 28eead7c2e5..c1e283ece12 100644
--- a/pkgs/development/tools/misc/patchelf/default.nix
+++ b/pkgs/development/tools/misc/patchelf/default.nix
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
   doCheck = stdenv.name == "stdenv-linux";
 
   meta = with lib; {
-    homepage = "https://github.com/NixOS/patchelf/blob/master/README";
+    homepage = "https://github.com/NixOS/patchelf";
     license = licenses.gpl3;
     description = "A small utility to modify the dynamic linker and RPATH of ELF executables";
     maintainers = [ maintainers.eelco ];
diff --git a/pkgs/development/tools/misc/patchelf/unstable.nix b/pkgs/development/tools/misc/patchelf/unstable.nix
index 1d790740e69..dd7f4ac881b 100644
--- a/pkgs/development/tools/misc/patchelf/unstable.nix
+++ b/pkgs/development/tools/misc/patchelf/unstable.nix
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
   doCheck = !stdenv.isDarwin;
 
   meta = with lib; {
-    homepage = "https://github.com/NixOS/patchelf/blob/master/README";
+    homepage = "https://github.com/NixOS/patchelf";
     license = licenses.gpl3;
     description = "A small utility to modify the dynamic linker and RPATH of ELF executables";
     maintainers = [ maintainers.eelco ];