tuareg-mode: update from 2.0.6 to 2.0.9

This commit is contained in:
Vincent Laporte 2015-03-19 09:34:33 +01:00
parent 9cfdeba324
commit e4c0225c29
1 changed files with 7 additions and 6 deletions

View File

@ -1,15 +1,15 @@
{ stdenv, fetchurl, emacs }: { stdenv, fetchzip, emacs }:
# this package installs the emacs-mode which # this package installs the emacs-mode which
# resides in the ocaml compiler sources. # resides in the ocaml compiler sources.
let version = "2.0.8"; let version = "2.0.9";
in stdenv.mkDerivation { in stdenv.mkDerivation {
name = "tuareg-mode-${version}"; name = "tuareg-mode-${version}";
src = fetchurl { src = fetchzip {
url = https://forge.ocamlcore.org/frs/download.php/882/tuareg-2.0.8.tar.bz2; url = "https://github.com/ocaml/tuareg/releases/download/${version}/tuareg-${version}.tar.gz";
sha256 = "128ibdzv5rf33b71d7b3gr9plmfamc28aprl8y0ap0ivc8jaqyga"; sha256 = "1rd7ai1wn476zfkkxv2xk72bbzi4d9c17gngd35882q4b5vzp756";
}; };
buildInputs = [ emacs ]; buildInputs = [ emacs ];
@ -20,8 +20,9 @@ in stdenv.mkDerivation {
''; '';
meta = { meta = {
homepage = http://caml.inria.fr; homepage = https://github.com/ocaml/tuareg;
description = "OCaml mode package for Emacs"; description = "OCaml mode package for Emacs";
platforms = stdenv.lib.platforms.unix; platforms = stdenv.lib.platforms.unix;
license = stdenv.lib.licenses.gpl2Plus;
}; };
} }