3
0
Fork 0
forked from mirrors/nixpkgs

ocaml-zed: update from 1.3 to 1.4

This commit is contained in:
Vincent Laporte 2015-02-01 20:03:45 +01:00
parent 9d5bde2eed
commit 7ee3e777c3

View file

@ -1,12 +1,12 @@
{stdenv, fetchurl, ocaml, findlib, camomile, ocaml_react}:
{ stdenv, fetchzip, ocaml, findlib, camomile, ocaml_react }:
stdenv.mkDerivation rec {
version = "1.3";
version = "1.4";
name = "ocaml-zed-${version}";
src = fetchurl {
url = https://github.com/diml/zed/archive/1.3.tar.gz;
sha256 = "1fr9xzf5msdnl2wx279aqj051nqbhs6v9aq1mfpv3r1mrqvrrfwj";
src = fetchzip {
url = "https://github.com/diml/zed/archive/${version}.tar.gz";
sha256 = "0d8qfy0qiydrrqi8qc9rcwgjigql6vx9gl4zp62jfz1lmjgb2a3w";
};
buildInputs = [ ocaml findlib ocaml_react ];