ocamlPackages.ocsigen-toolkit: 1.0.0 -> 1.1.0

This commit is contained in:
Vincent Laporte 2018-04-01 06:54:23 +00:00
parent 8994fff8bb
commit 9a170f5bdf
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F

View file

@ -1,15 +1,15 @@
{ stdenv, fetchurl, buildOcaml, ocaml, eliom, opam }:
{ stdenv, fetchurl, buildOcaml, ocaml, opam
, calendar, eliom, js_of_ocaml-ppx_deriving_json
}:
buildOcaml rec
{
name = "ocsigen-toolkit";
version = "1.0.0";
version = "1.1.0";
propagatedBuildInputs = [ eliom ];
propagatedBuildInputs = [ calendar eliom js_of_ocaml-ppx_deriving_json ];
buildInputs = [ opam ];
createFindlibDestdir = true;
installPhase =
''
export OCAMLPATH=$out/lib/ocaml/${ocaml.version}/site-lib/:$OCAMLPATH
@ -18,7 +18,7 @@ buildOcaml rec
'';
src = fetchurl {
sha256 = "0wm4fnss7vlkd03ybgfrk63kpip6m6p6kdqjn3f64n11256mwzj2";
sha256 = "1i5806gaqqllgsgjz3lf9fwlffqg3vfl49msmhy7xvq2sncbxp8a";
url = "https://github.com/ocsigen/${name}/archive/${version}.tar.gz";
};