about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2021-08-22 15:24:18 +0200
committerJörg Thalheim <joerg@thalheim.io>2021-08-22 16:07:45 +0200
commitb113d0c2039ab55212638dcd1a6d0de44ce321f6 (patch)
tree46d4fb91c1bf17de3cbc4bb3f2b7945440f9ed32
parent695906668364af6e6e51872545b1e6b2bf22deff (diff)
ansible: fix https url
-rw-r--r--pkgs/development/python-modules/ansible/collections.nix2
-rw-r--r--pkgs/development/python-modules/ansible/legacy.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/ansible/collections.nix b/pkgs/development/python-modules/ansible/collections.nix
index 05aa0b2b2945d..0c58defb583f9 100644
--- a/pkgs/development/python-modules/ansible/collections.nix
+++ b/pkgs/development/python-modules/ansible/collections.nix
@@ -72,7 +72,7 @@ buildPythonPackage rec {
 
   meta = with lib; {
     description = "Radically simple IT automation";
-    homepage = "http://www.ansible.com";
+    homepage = "https://www.ansible.com";
     license = licenses.gpl3Plus;
     maintainers = with maintainers; [ hexa ];
   };
diff --git a/pkgs/development/python-modules/ansible/legacy.nix b/pkgs/development/python-modules/ansible/legacy.nix
index 7eb0f3f940499..e7687f9b99de5 100644
--- a/pkgs/development/python-modules/ansible/legacy.nix
+++ b/pkgs/development/python-modules/ansible/legacy.nix
@@ -46,7 +46,7 @@ buildPythonPackage rec {
   doCheck = false;
 
   meta = with lib; {
-    homepage = "http://www.ansible.com";
+    homepage = "https://www.ansible.com";
     description = "Radically simple IT automation";
     license = [ licenses.gpl3 ] ;
     maintainers = with maintainers; [ joamaki costrouc hexa ];