1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00

Merge pull request #3681 from vbgl/merlin-1.7

Merlin: update to 1.7
This commit is contained in:
Michael Raskin 2014-09-02 02:07:27 +04:00
commit 4e3ee27060
2 changed files with 11 additions and 9 deletions

View file

@ -4,16 +4,18 @@ let
version = "1.1.8";
webpage = "http://mjambon.com/${pname}.html";
in
stdenv.mkDerivation rec {
stdenv.mkDerivation {
name = "${pname}-${version}";
name = "ocaml-${pname}-${version}";
src = fetchurl {
url = "http://mjambon.com/releases/${pname}/${name}.tar.gz";
url = "http://mjambon.com/releases/${pname}/${pname}-${version}.tar.gz";
sha256 = "0ayx17dimnpavdfyq6dk9xv2x1fx69by85vc6vl3nqxjkcv5d2rv";
};
buildInputs = [ ocaml findlib cppo easy-format biniou ];
buildInputs = [ ocaml findlib ];
propagatedBuildInputs = [ cppo easy-format biniou ];
createFindlibDestdir = true;

View file

@ -1,14 +1,14 @@
{stdenv, fetchurl, ocaml, findlib, easy-format, biniou, yojson, menhir}:
{stdenv, fetchurl, ocaml, findlib, yojson, menhir}:
stdenv.mkDerivation {
name = "merlin-1.6";
name = "merlin-1.7.1";
src = fetchurl {
url = "https://github.com/the-lambda-church/merlin/archive/v1.6.tar.gz";
sha256 = "0wq75hgffaszazrhkl0nfjxgx8bvazi2sjannd8q64hvax8hxzcy";
url = https://github.com/the-lambda-church/merlin/archive/v1.7.1.tar.gz;
sha256 = "c3b60c7b3fddaa2860e0d8ac0d4fed2ed60e319875734c7ac1a93df524c67aff";
};
buildInputs = [ ocaml findlib biniou yojson menhir easy-format ];
buildInputs = [ ocaml findlib yojson menhir ];
prefixKey = "--prefix ";