aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/ocaml-modules/cryptokit
diff options
context:
space:
mode:
authorMichael Reilly <OmnipotentEntity@gmail.com>2020-03-31 21:11:51 -0400
committerJörg Thalheim <joerg@thalheim.io>2020-04-10 17:54:53 +0100
commit84cf00f98031e93f389f1eb93c4a7374a33cc0a9 (patch)
tree203c51a8740cb4893b8cfc4426d4cd49a97430e0 /pkgs/development/ocaml-modules/cryptokit
parentbf5eb87033cc6a5de5cc48da544c17a4dedc790b (diff)
treewide: Per RFC45, remove all unquoted URLs
Diffstat (limited to 'pkgs/development/ocaml-modules/cryptokit')
-rw-r--r--pkgs/development/ocaml-modules/cryptokit/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/cryptokit/default.nix b/pkgs/development/ocaml-modules/cryptokit/default.nix
index 1c7a0ccb0faa..69f8445e2173 100644
--- a/pkgs/development/ocaml-modules/cryptokit/default.nix
+++ b/pkgs/development/ocaml-modules/cryptokit/default.nix
@@ -6,12 +6,12 @@ let param =
if stdenv.lib.versionAtLeast ocaml.version "4.02"
then {
version = "1.14";
- url = https://github.com/xavierleroy/cryptokit/archive/release114.tar.gz;
+ url = "https://github.com/xavierleroy/cryptokit/archive/release114.tar.gz";
sha256 = "0wkh72idkb7dahiwyl94hhbq27cc7x9fnmxkpnbqli6wi8wd7d05";
inherit zarith;
} else {
version = "1.10";
- url = http://forge.ocamlcore.org/frs/download.php/1493/cryptokit-1.10.tar.gz;
+ url = "http://forge.ocamlcore.org/frs/download.php/1493/cryptokit-1.10.tar.gz";
sha256 = "1k2f2ixm7jcsgrzn9lz1hm9qqgq71lk9lxy3v3cwsd8xdrj3jrnv";
zarith = null;
};
@@ -33,7 +33,7 @@ stdenv.mkDerivation {
preBuild = "mkdir -p $out/lib/ocaml/${ocaml.version}/site-lib/stublibs";
meta = {
- homepage = http://pauillac.inria.fr/~xleroy/software.html;
+ homepage = "http://pauillac.inria.fr/~xleroy/software.html";
description = "A library of cryptographic primitives for OCaml";
platforms = ocaml.meta.platforms or [];
maintainers = [