about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorBart Brouns <bart@magnetophon.nl>2018-10-04 02:24:28 +0200
committerBart Brouns <bart@magnetophon.nl>2018-10-04 02:30:47 +0200
commit3f97539b423da0a6e4cd59ff367b9b2486d08276 (patch)
treebd1aa137984bbaf7ce187e43e00b0e73d93664b5 /pkgs/development/ocaml-modules
parent6a995e986ac565bfd039051b6ef64adbf2858a46 (diff)
downloadnixlib-3f97539b423da0a6e4cd59ff367b9b2486d08276.tar
nixlib-3f97539b423da0a6e4cd59ff367b9b2486d08276.tar.gz
nixlib-3f97539b423da0a6e4cd59ff367b9b2486d08276.tar.bz2
nixlib-3f97539b423da0a6e4cd59ff367b9b2486d08276.tar.lz
nixlib-3f97539b423da0a6e4cd59ff367b9b2486d08276.tar.xz
nixlib-3f97539b423da0a6e4cd59ff367b9b2486d08276.tar.zst
nixlib-3f97539b423da0a6e4cd59ff367b9b2486d08276.zip
camomile: 0.8.7 -> 1.0.1
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/camomile/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/camomile/default.nix b/pkgs/development/ocaml-modules/camomile/default.nix
index 53c45d17854c..5e156776f860 100644
--- a/pkgs/development/ocaml-modules/camomile/default.nix
+++ b/pkgs/development/ocaml-modules/camomile/default.nix
@@ -1,14 +1,14 @@
 { stdenv, fetchFromGitHub, ocaml, findlib, dune, cppo }:
 
 stdenv.mkDerivation rec {
-	version = "0.8.7";
+	version = "1.0.1";
 	name = "ocaml${ocaml.version}-camomile-${version}";
 
 	src = fetchFromGitHub {
 		owner = "yoriyuki";
 		repo = "camomile";
-		rev = "rel-${version}";
-		sha256 = "0rh58nl5jrnx01hf0yqbdcc2ncx107pq29zblchww82ci0x1xwsf";
+		rev = "${version}";
+		sha256 = "1pfxr9kzkpd5bsdqrpxasfxkawwkg4cpx3m1h6203sxi7qv1z3fn";
 	};
 
 	buildInputs = [ ocaml findlib dune cppo ];