jbuilder: 1.0+beta14 -> 1.0+beta18

This commit is contained in:
Masayuki Takeda 2018-02-22 13:06:07 +09:00 committed by Vincent Laporte
parent c2fbd472a4
commit e066751227

View File

@ -1,10 +1,13 @@
{ stdenv, fetchzip, ocaml, opam }:
{ stdenv, fetchFromGitHub, ocaml, opam }:
stdenv.mkDerivation {
name = "jbuilder-1.0+beta14";
src = fetchzip {
url = http://github.com/janestreet/jbuilder/archive/1.0+beta14.tar.gz;
sha256 = "0vq4chqp7bm3rd5n6ry1j1ia6xqlz463059ljd1jmawa4dcyilvl";
stdenv.mkDerivation rec {
name = "jbuilder-${version}";
version = "1.0+beta18";
src = fetchFromGitHub {
owner = "ocaml";
repo = "dune";
rev = "${version}";
sha256 = "1xw4i5qd2ndnddzb8b14fb52qxnjpr3lr9wx3mprv4f294kdg0l6";
};
buildInputs = [ ocaml ];