summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2020-04-07 01:20:37 +0200
committerGitHub <noreply@github.com>2020-04-07 01:20:37 +0200
commit869e137ded41c63a3fd019c4c1fa52033af8c3a4 (patch)
treee155113795d8a23df1b242fcd02f056878fe09f4 /pkgs
parent88d5e1ed082319a8207444c56fc70f0ff7ae3aa3 (diff)
parent2c40ba774d83206b57bbbaed8fbf332b134351e4 (diff)
downloadnixpkgs-869e137ded41c63a3fd019c4c1fa52033af8c3a4.tar
nixpkgs-869e137ded41c63a3fd019c4c1fa52033af8c3a4.tar.gz
nixpkgs-869e137ded41c63a3fd019c4c1fa52033af8c3a4.tar.bz2
nixpkgs-869e137ded41c63a3fd019c4c1fa52033af8c3a4.tar.lz
nixpkgs-869e137ded41c63a3fd019c4c1fa52033af8c3a4.tar.xz
nixpkgs-869e137ded41c63a3fd019c4c1fa52033af8c3a4.tar.zst
nixpkgs-869e137ded41c63a3fd019c4c1fa52033af8c3a4.zip
Merge pull request #84460 from NieDzejkob/patchelf-homepage
patchelf: Fix homepage URL
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/misc/patchelf/default.nix2
-rw-r--r--pkgs/development/tools/misc/patchelf/unstable.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/misc/patchelf/default.nix b/pkgs/development/tools/misc/patchelf/default.nix
index 77d03f299f4..778d3079471 100644
--- a/pkgs/development/tools/misc/patchelf/default.nix
+++ b/pkgs/development/tools/misc/patchelf/default.nix
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
   doCheck = false; # fails 8 out of 24 tests, problems when loading libc.so.6
 
   meta = with stdenv.lib; {
-    homepage = https://nixos.org/patchelf.html;
+    homepage = https://github.com/NixOS/patchelf/blob/master/README;
     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 f5ff1c74bcc..349c6a4e1eb 100644
--- a/pkgs/development/tools/misc/patchelf/unstable.nix
+++ b/pkgs/development/tools/misc/patchelf/unstable.nix
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
   doCheck = !stdenv.isDarwin;
 
   meta = with stdenv.lib; {
-    homepage = https://nixos.org/patchelf.html;
+    homepage = https://github.com/NixOS/patchelf/blob/master/README;
     license = licenses.gpl3;
     description = "A small utility to modify the dynamic linker and RPATH of ELF executables";
     maintainers = [ maintainers.eelco ];