summary refs log tree commit diff
path: root/pkgs/applications/science/logic/alt-ergo
diff options
context:
space:
mode:
authorJean-Pierre PRUNARET <jean-pierre+git@prunetwork.fr>2017-08-13 13:26:30 +0200
committerJean-Pierre PRUNARET <jean-pierre+git@prunetwork.fr>2017-08-13 13:26:30 +0200
commit184d2e79778a4e5ff6bf09037d0df9f4574c11b9 (patch)
tree9da43a8d7bf8a1f66e014ef662bba2438532b59f /pkgs/applications/science/logic/alt-ergo
parentabdb58e407d0351894ea1ee32c3484a89f1e53cd (diff)
downloadnixpkgs-184d2e79778a4e5ff6bf09037d0df9f4574c11b9.tar
nixpkgs-184d2e79778a4e5ff6bf09037d0df9f4574c11b9.tar.gz
nixpkgs-184d2e79778a4e5ff6bf09037d0df9f4574c11b9.tar.bz2
nixpkgs-184d2e79778a4e5ff6bf09037d0df9f4574c11b9.tar.lz
nixpkgs-184d2e79778a4e5ff6bf09037d0df9f4574c11b9.tar.xz
nixpkgs-184d2e79778a4e5ff6bf09037d0df9f4574c11b9.tar.zst
nixpkgs-184d2e79778a4e5ff6bf09037d0df9f4574c11b9.zip
alt-ergo: use https instead of http to fetch archive
Diffstat (limited to 'pkgs/applications/science/logic/alt-ergo')
-rw-r--r--pkgs/applications/science/logic/alt-ergo/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/science/logic/alt-ergo/default.nix b/pkgs/applications/science/logic/alt-ergo/default.nix
index 7cf0aeb203d..8cf4bb9b6d2 100644
--- a/pkgs/applications/science/logic/alt-ergo/default.nix
+++ b/pkgs/applications/science/logic/alt-ergo/default.nix
@@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
   version = "1.30";
 
   src = fetchurl {
-    url    = "http://alt-ergo.ocamlpro.com/download_manager.php?target=${name}.tar.gz";
+    url    = "https://alt-ergo.ocamlpro.com/download_manager.php?target=${name}.tar.gz";
     name   = "${name}.tar.gz";
     sha256 = "025pacb4ax864fn5x8k78mw6hiig4jcazblj18gzxspg4f1l5n1g";
   };
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
 
   meta = {
     description = "High-performance theorem prover and SMT solver";
-    homepage    = "http://alt-ergo.ocamlpro.com/";
+    homepage    = "https://alt-ergo.ocamlpro.com/";
     license     = stdenv.lib.licenses.cecill-c; # LGPL-2 compatible
     platforms   = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
     maintainers = [ stdenv.lib.maintainers.thoughtpolice ];