1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 05:31:22 +00:00

ocamlPackages.labltk: init at 8.06.7 for OCaml ≥ 4.08

This commit is contained in:
Vincent Laporte 2019-10-06 07:37:47 +00:00 committed by Vincent Laporte
parent 690f986c0f
commit a9435c8db8

View file

@ -1,26 +1,43 @@
{ stdenv, fetchurl, ocaml, findlib, tcl, tk }: { stdenv, fetchurl, fetchzip, ocaml, findlib, tcl, tk }:
if !stdenv.lib.versionAtLeast ocaml.version "4.04" let OCamlVersionAtLeast = stdenv.lib.versionAtLeast ocaml.version; in
if !OCamlVersionAtLeast "4.04"
then throw "labltk is not available for OCaml ${ocaml.version}" then throw "labltk is not available for OCaml ${ocaml.version}"
else else
let param = { let param =
"4.04" = { if OCamlVersionAtLeast "4.08" then rec {
version = "8.06.7";
src = fetchzip {
url = "https://github.com/garrigue/labltk/archive/${version}.tar.gz";
sha256 = "1cqnxjv2dvw9csiz4iqqyx6rck04jgylpglk8f69kgybf7k7xk2h";
};
} else
let mkOldParam = { version, key, sha256 }: {
src = fetchurl {
url = "https://forge.ocamlcore.org/frs/download.php/${key}/labltk-${version}.tar.gz";
inherit sha256;
};
inherit version;
}; in
{
"4.04" = mkOldParam {
version = "8.06.2"; version = "8.06.2";
key = "1628"; key = "1628";
sha256 = "1p97j9s33axkb4yyl0byhmhlyczqarb886ajpyggizy2br3a0bmk"; sha256 = "1p97j9s33axkb4yyl0byhmhlyczqarb886ajpyggizy2br3a0bmk";
}; };
"4.05" = { "4.05" = mkOldParam {
version = "8.06.3"; version = "8.06.3";
key = "1701"; key = "1701";
sha256 = "1rka9jpg3kxqn7dmgfsa7pmsdwm16x7cn4sh15ijyyrad9phgdxn"; sha256 = "1rka9jpg3kxqn7dmgfsa7pmsdwm16x7cn4sh15ijyyrad9phgdxn";
}; };
"4.06" = { "4.06" = mkOldParam {
version = "8.06.4"; version = "8.06.4";
key = "1727"; key = "1727";
sha256 = "0j3rz0zz4r993wa3ssnk5s416b1jhj58l6z2jk8238a86y7xqcii"; sha256 = "0j3rz0zz4r993wa3ssnk5s416b1jhj58l6z2jk8238a86y7xqcii";
}; };
"4.07" = { "4.07" = mkOldParam {
version = "8.06.5"; version = "8.06.5";
key = "1764"; key = "1764";
sha256 = "0wgx65y1wkgf22ihpqmspqfp95fqbj3pldhp1p3b1mi8rmc37zwj"; sha256 = "0wgx65y1wkgf22ihpqmspqfp95fqbj3pldhp1p3b1mi8rmc37zwj";
@ -29,14 +46,9 @@ let param = {
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
inherit (param) version; inherit (param) version src;
name = "ocaml${ocaml.version}-labltk-${version}"; name = "ocaml${ocaml.version}-labltk-${version}";
src = fetchurl {
url = "https://forge.ocamlcore.org/frs/download.php/${param.key}/labltk-${param.version}.tar.gz";
inherit (param) sha256;
};
buildInputs = [ ocaml findlib tcl tk ]; buildInputs = [ ocaml findlib tcl tk ];
configureFlags = [ "--use-findlib" "--installbindir" "$(out)/bin" ]; configureFlags = [ "--use-findlib" "--installbindir" "$(out)/bin" ];