lol

patchelf: fix homepage

ppom 896623db 92519b2f

+3 -3
+1 -1
doc/stdenv/multiple-output.chapter.md
··· 79 79 80 80 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`). 81 81 82 - 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). 82 + 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). 83 83 84 84 ### File type groups {#multiple-output-file-type-groups} 85 85
+1 -1
pkgs/development/tools/misc/patchelf/default.nix
··· 20 20 doCheck = stdenv.name == "stdenv-linux"; 21 21 22 22 meta = with lib; { 23 - homepage = "https://github.com/NixOS/patchelf/blob/master/README"; 23 + homepage = "https://github.com/NixOS/patchelf"; 24 24 license = licenses.gpl3; 25 25 description = "A small utility to modify the dynamic linker and RPATH of ELF executables"; 26 26 maintainers = [ maintainers.eelco ];
+1 -1
pkgs/development/tools/misc/patchelf/unstable.nix
··· 25 25 doCheck = !stdenv.isDarwin; 26 26 27 27 meta = with lib; { 28 - homepage = "https://github.com/NixOS/patchelf/blob/master/README"; 28 + homepage = "https://github.com/NixOS/patchelf"; 29 29 license = licenses.gpl3; 30 30 description = "A small utility to modify the dynamic linker and RPATH of ELF executables"; 31 31 maintainers = [ maintainers.eelco ];