Merge pull request #18987 from maurer/oasis_typo

oasis: fix typo
This commit is contained in:
Joachim F 2016-09-27 00:15:45 +02:00 committed by GitHub
commit 0973ee51e4

View file

@ -1,11 +1,14 @@
{stdenv, fetchurl, ocaml, findlib, ocaml_data_notation, type_conv, camlp4,
ocamlmod, ocamlify, ounit, expect}:
stdenv.mkDerivation {
name = "ocaml-oasis-0.4.7";
stdenv.mkDerivation rec {
version = "0.4.7";
name = "ocaml-oasis-${version}";
# You must manually update the url, not just the version. OCamlforge keys off
# the number after download.php, not the filename.
src = fetchurl {
url = http://forge.ocamlcore.org/frs/download.php/1635/oasis-0.4.6.tar.gz;
url = "http://forge.ocamlcore.org/frs/download.php/1635/oasis-${version}.tar.gz";
sha256 = "13crvqiy0hhlnm4qfyxq2jjvs11ldxf15c4g9q91k1x3wj04pg2l";
};