about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2017-11-10 22:13:27 +0100
committerPascal Wittmann <mail@pascal-wittmann.de>2017-11-10 22:13:46 +0100
commit24e87b49b69eeceb35698c31fc78aa6c37c3a53f (patch)
treed1c50545dac97e58e616a98b1446ddd4f75d3eff /pkgs/development/ocaml-modules
parent8ba0b7bc3b7a0c359aced533295862e3b92ac9e8 (diff)
downloadnixlib-24e87b49b69eeceb35698c31fc78aa6c37c3a53f.tar
nixlib-24e87b49b69eeceb35698c31fc78aa6c37c3a53f.tar.gz
nixlib-24e87b49b69eeceb35698c31fc78aa6c37c3a53f.tar.bz2
nixlib-24e87b49b69eeceb35698c31fc78aa6c37c3a53f.tar.lz
nixlib-24e87b49b69eeceb35698c31fc78aa6c37c3a53f.tar.xz
nixlib-24e87b49b69eeceb35698c31fc78aa6c37c3a53f.tar.zst
nixlib-24e87b49b69eeceb35698c31fc78aa6c37c3a53f.zip
Change many homepage urls from http to https #30636
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/ocamlfuse/default.nix2
-rw-r--r--pkgs/development/ocaml-modules/sqlexpr/default.nix2
-rw-r--r--pkgs/development/ocaml-modules/sqlite3EZ/default.nix2
3 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/ocamlfuse/default.nix b/pkgs/development/ocaml-modules/ocamlfuse/default.nix
index e5a3c282e581..20b63e3a8eef 100644
--- a/pkgs/development/ocaml-modules/ocamlfuse/default.nix
+++ b/pkgs/development/ocaml-modules/ocamlfuse/default.nix
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
   createFindlibDestdir = true;
 
   meta = {
-    homepage = http://sourceforge.net/projects/ocamlfuse;
+    homepage = https://sourceforge.net/projects/ocamlfuse;
     description = "OCaml bindings for FUSE";
     license = stdenv.lib.licenses.gpl2;
     platforms = stdenv.lib.platforms.linux;
diff --git a/pkgs/development/ocaml-modules/sqlexpr/default.nix b/pkgs/development/ocaml-modules/sqlexpr/default.nix
index d0363abbf2cf..6d1654f2b42f 100644
--- a/pkgs/development/ocaml-modules/sqlexpr/default.nix
+++ b/pkgs/development/ocaml-modules/sqlexpr/default.nix
@@ -12,7 +12,7 @@ buildOcaml rec {
   propagatedBuildInputs = [ ocaml_batteries csv ocaml_lwt ocaml_sqlite3 estring ];
 
   meta = with stdenv.lib; {
-    homepage = http://github.com/mfp/ocaml-sqlexpr;
+    homepage = https://github.com/mfp/ocaml-sqlexpr;
     description = "Type-safe, convenient SQLite database access";
     license = licenses.lgpl21;
   };
diff --git a/pkgs/development/ocaml-modules/sqlite3EZ/default.nix b/pkgs/development/ocaml-modules/sqlite3EZ/default.nix
index 0a5c04ce7aa9..ef9c254aba14 100644
--- a/pkgs/development/ocaml-modules/sqlite3EZ/default.nix
+++ b/pkgs/development/ocaml-modules/sqlite3EZ/default.nix
@@ -17,7 +17,7 @@ stdenv.mkDerivation {
   createFindlibDestdir = true;
 
   meta = with stdenv.lib; {
-    homepage = http://github.com/mlin/ocaml-sqlite3EZ;
+    homepage = https://github.com/mlin/ocaml-sqlite3EZ;
     description = "A thin wrapper for sqlite3-ocaml with a simplified interface";
     license = licenses.mit;
     maintainers = [ maintainers.vbgl ];