summary refs log tree commit diff
path: root/pkgs/tools/typesetting
diff options
context:
space:
mode:
authorFrederik Rietdijk <freddyrietdijk@fridh.nl>2017-08-13 21:53:20 +0200
committerGitHub <noreply@github.com>2017-08-13 21:53:20 +0200
commit13bbaee21d2b81b6281d373d8fafd02d0291edfb (patch)
tree1c761d5f9a8d4bb4da6e89a6b6e3bc97970f0b61 /pkgs/tools/typesetting
parentd0d87242619e5649078739e34afcdf05f3a52cac (diff)
parent09e0cc7cc79cd0e028a56907ddcf36f9bdef1540 (diff)
downloadnixlib-13bbaee21d2b81b6281d373d8fafd02d0291edfb.tar
nixlib-13bbaee21d2b81b6281d373d8fafd02d0291edfb.tar.gz
nixlib-13bbaee21d2b81b6281d373d8fafd02d0291edfb.tar.bz2
nixlib-13bbaee21d2b81b6281d373d8fafd02d0291edfb.tar.lz
nixlib-13bbaee21d2b81b6281d373d8fafd02d0291edfb.tar.xz
nixlib-13bbaee21d2b81b6281d373d8fafd02d0291edfb.tar.zst
nixlib-13bbaee21d2b81b6281d373d8fafd02d0291edfb.zip
Merge pull request #27881 from mimadrid/fix/http-https
Update homepage attributes: http -> https
Diffstat (limited to 'pkgs/tools/typesetting')
-rw-r--r--pkgs/tools/typesetting/fop/default.nix2
-rw-r--r--pkgs/tools/typesetting/halibut/default.nix4
2 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/typesetting/fop/default.nix b/pkgs/tools/typesetting/fop/default.nix
index aff11fd61279..5f926f771c5f 100644
--- a/pkgs/tools/typesetting/fop/default.nix
+++ b/pkgs/tools/typesetting/fop/default.nix
@@ -43,7 +43,7 @@ stdenv.mkDerivation rec {
 
       This package contains the fop command line tool.
     '';
-    homepage = http://xmlgraphics.apache.org/fop/;
+    homepage = https://xmlgraphics.apache.org/fop/;
     license = licenses.asl20;
     platforms = platforms.linux;
     maintainers = with maintainers; [ bjornfor ndowens ];
diff --git a/pkgs/tools/typesetting/halibut/default.nix b/pkgs/tools/typesetting/halibut/default.nix
index 84cd2cf921a1..f0ed44351a20 100644
--- a/pkgs/tools/typesetting/halibut/default.nix
+++ b/pkgs/tools/typesetting/halibut/default.nix
@@ -4,7 +4,7 @@ stdenv.mkDerivation rec {
   name = "halibut-1.2";
 
   src = fetchurl {
-    url = "http://www.chiark.greenend.org.uk/~sgtatham/halibut/${name}/${name}.tar.gz";
+    url = "http://ww.chiark.greenend.org.uk/~sgtatham/halibut/${name}/${name}.tar.gz";
     sha256 = "0gqnhfqf555rfpk5xj1imbdxnbkkrv4wl3rrdb1r0wgj81igpv8s";
   };
 
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "Documentation production system for software manuals";
-    homepage = http://www.chiark.greenend.org.uk/~sgtatham/halibut/;
+    homepage = https://www.chiark.greenend.org.uk/~sgtatham/halibut/;
     license = licenses.mit;
     maintainers = with maintainers; [ pSub ];
     platforms = with platforms; unix;