about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2022-03-21 14:58:22 +0000
committerSandro Jäckel <sandro.jaeckel@gmail.com>2022-03-27 12:10:00 +0200
commit270faa307013ff807f54b3df5f3d8c2517b7668c (patch)
tree3953c20be583fa38764c9d19c48be152844a4f6d /pkgs/development/ocaml-modules
parent9427a17ccb332822dc7d0a693d7b859ba5a9f0ab (diff)
downloadnixlib-270faa307013ff807f54b3df5f3d8c2517b7668c.tar
nixlib-270faa307013ff807f54b3df5f3d8c2517b7668c.tar.gz
nixlib-270faa307013ff807f54b3df5f3d8c2517b7668c.tar.bz2
nixlib-270faa307013ff807f54b3df5f3d8c2517b7668c.tar.lz
nixlib-270faa307013ff807f54b3df5f3d8c2517b7668c.tar.xz
nixlib-270faa307013ff807f54b3df5f3d8c2517b7668c.tar.zst
nixlib-270faa307013ff807f54b3df5f3d8c2517b7668c.zip
ocamlPackages.uutf: 1.0.2 -> 1.0.3
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/uutf/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/development/ocaml-modules/uutf/default.nix b/pkgs/development/ocaml-modules/uutf/default.nix
index 6701c8650513..660be0f74736 100644
--- a/pkgs/development/ocaml-modules/uutf/default.nix
+++ b/pkgs/development/ocaml-modules/uutf/default.nix
@@ -1,16 +1,15 @@
 { lib, stdenv, fetchurl, ocaml, findlib, ocamlbuild, cmdliner , topkg, uchar }:
 let
   pname = "uutf";
-  webpage = "https://erratique.ch/software/${pname}";
 in
 
 stdenv.mkDerivation rec {
   name = "ocaml${ocaml.version}-${pname}-${version}";
-  version = "1.0.2";
+  version = "1.0.3";
 
   src = fetchurl {
-    url = "${webpage}/releases/${pname}-${version}.tbz";
-    sha256 = "1nx1rly3qj23jzn9yk3x6fwqimcxjd84kv5859vvhdg56psq26p6";
+    url = "https://erratique.ch/software/${pname}/releases/${pname}${version}.tbz";
+    sha256 = "sha256-h3KlYT0ecCmM4U3zMkGjaF8h5O9r20zwP+mF+x7KBWg=";
   };
 
   nativeBuildInputs = [ ocaml ocamlbuild findlib topkg ];
@@ -23,7 +22,7 @@ stdenv.mkDerivation rec {
 
   meta = with lib; {
     description = "Non-blocking streaming Unicode codec for OCaml";
-    homepage = webpage;
+    homepage = "https://erratique.ch/software/uutf";
     platforms = ocaml.meta.platforms or [];
     license = licenses.bsd3;
     maintainers = [ maintainers.vbgl ];