ocsigen-i18n: 3.4.0 → 3.5.0

This commit is contained in:
Vincent Laporte 2020-03-07 10:21:37 +01:00 committed by Vincent Laporte
parent 84f862ed91
commit 5e468ef981
1 changed files with 5 additions and 6 deletions

View File

@ -1,12 +1,11 @@
{ stdenv, fetchurl, ocamlPackages }:
{ stdenv, fetchzip, ocamlPackages }:
stdenv.mkDerivation rec
{
pname = "ocsigen-i18n";
version = "3.4.0";
buildInputs = with ocamlPackages; [ ocaml findlib ];
version = "3.5.0";
buildInputs = with ocamlPackages; [ ocaml findlib ppx_tools ];
dontStrip = true;
@ -15,9 +14,9 @@ stdenv.mkDerivation rec
make bindir=$out/bin install
'';
src = fetchurl {
src = fetchzip {
url = "https://github.com/besport/${pname}/archive/${version}.tar.gz";
sha256 = "0i7cck6zlgwjpksb4s1jpy193h85jixf4d0nmqj09y3zcpn2i8gb";
sha256 = "1qsgwfl64b53w235wm7nnchqinzgsvd2gb52xm0kra2wlwp69rfq";
};
meta = {