Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / ocaml-modules / ocaml-version / default.nix
blob4fde475cf936a75848ed80aa03f585768124d73e
1 { lib, fetchurl, buildDunePackage }:
3 buildDunePackage rec {
5   pname = "ocaml-version";
6   version = "3.0.0";
8   minimumOCamlVersion = "4.07";
10   useDune2 = true;
12   src = fetchurl {
13     url = "https://github.com/ocurrent/ocaml-version/releases/download/v${version}/ocaml-version-v${version}.tbz";
14     sha256 = "15vk8sh50p3f2mbv8z7mqnx76cffri36f2krp25zkkwix8jg7ci4";
15   };
17   meta = {
18     description = "Manipulate, parse and generate OCaml compiler version strings";
19     homepage = "https://github.com/ocurrent/ocaml-version";
20     license = lib.licenses.isc;
21     maintainers = [ lib.maintainers.vbgl ];
22   };