forked from mirrors/nixpkgs
a7f4d6bae9
* ocaml-version: 3.1.0 -> 3.4.0 * ocamlformat: 0.19.0 -> 0.20.0 * odoc-parser: refactor use version variable use version to compute the uri for the archive * odoc-parser: 0.9.0 -> 1.0.0 * odoc-parser: allow multiple versions allow both 0.9.0 and 1.0.0 to accommodate different version of ocamlformat * ocamlformat: 0.20.0 -> 0.20.1
73 lines
1.4 KiB
Nix
73 lines
1.4 KiB
Nix
{ lib, fetchurl, fetchzip, callPackage }:
|
|
|
|
let mkOCamlformat = callPackage ./generic.nix; in
|
|
|
|
# Older versions should be removed when their usage decrease
|
|
# This script scraps Github looking for OCamlformat's options and versions usage:
|
|
# https://gist.github.com/Julow/110dc94308d6078225e0665e3eccd433
|
|
|
|
rec {
|
|
ocamlformat_0_11_0 = mkOCamlformat {
|
|
version = "0.11.0";
|
|
};
|
|
|
|
ocamlformat_0_12 = mkOCamlformat {
|
|
version = "0.12";
|
|
};
|
|
|
|
ocamlformat_0_13_0 = mkOCamlformat rec {
|
|
version = "0.13.0";
|
|
tarballName = "ocamlformat-${version}-2.tbz";
|
|
};
|
|
|
|
ocamlformat_0_14_0 = mkOCamlformat {
|
|
version = "0.14.0";
|
|
};
|
|
|
|
ocamlformat_0_14_1 = mkOCamlformat {
|
|
version = "0.14.1";
|
|
};
|
|
|
|
ocamlformat_0_14_2 = mkOCamlformat {
|
|
version = "0.14.2";
|
|
};
|
|
|
|
ocamlformat_0_14_3 = mkOCamlformat {
|
|
version = "0.14.3";
|
|
};
|
|
|
|
ocamlformat_0_15_0 = mkOCamlformat {
|
|
version = "0.15.0";
|
|
};
|
|
|
|
ocamlformat_0_15_1 = mkOCamlformat {
|
|
version = "0.15.1";
|
|
};
|
|
|
|
ocamlformat_0_16_0 = mkOCamlformat {
|
|
version = "0.16.0";
|
|
};
|
|
|
|
ocamlformat_0_17_0 = mkOCamlformat {
|
|
version = "0.17.0";
|
|
};
|
|
|
|
ocamlformat_0_18_0 = mkOCamlformat {
|
|
version = "0.18.0";
|
|
};
|
|
|
|
ocamlformat_0_19_0 = mkOCamlformat {
|
|
version = "0.19.0";
|
|
};
|
|
|
|
ocamlformat_0_20_0 = mkOCamlformat {
|
|
version = "0.20.0";
|
|
};
|
|
|
|
ocamlformat_0_20_1 = mkOCamlformat {
|
|
version = "0.20.1";
|
|
};
|
|
|
|
ocamlformat = ocamlformat_0_20_1;
|
|
}
|