ocamlPackages.ocaml-version: init at 2.3.0
This commit is contained in:
parent
5746e9fd91
commit
b5e82ad239
22
pkgs/development/ocaml-modules/ocaml-version/default.nix
Normal file
22
pkgs/development/ocaml-modules/ocaml-version/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ lib, fetchurl, buildDunePackage, result }:
|
||||
|
||||
buildDunePackage rec {
|
||||
|
||||
pname = "ocaml-version";
|
||||
version = "2.3.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/ocurrent/ocaml-version/releases/download/v${version}/ocaml-version-v${version}.tbz";
|
||||
sha256 = "0c711lifl35xila9k0rvhijy9zm3shd37q3jgw7xf01hn1swg0hn";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ result ];
|
||||
|
||||
meta = {
|
||||
description = "Manipulate, parse and generate OCaml compiler version strings";
|
||||
homepage = "https://github.com/ocurrent/ocaml-version";
|
||||
license = lib.licenses.isc;
|
||||
maintainers = [ lib.maintainers.vbgl ];
|
||||
};
|
||||
|
||||
}
|
@ -585,6 +585,8 @@ let
|
||||
|
||||
ocaml_text = callPackage ../development/ocaml-modules/ocaml-text { };
|
||||
|
||||
ocaml-version = callPackage ../development/ocaml-modules/ocaml-version { };
|
||||
|
||||
ocf = callPackage ../development/ocaml-modules/ocf { };
|
||||
|
||||
ocp-build = callPackage ../development/tools/ocaml/ocp-build { };
|
||||
|
Loading…
Reference in New Issue
Block a user