greenmask: 0.2.6 -> 0.2.7 (#378403)
[NixPkgs.git] / pkgs / development / ocaml-modules / domain_shims / default.nix
blob32373e0fb4071cf3948296c03aa1e65fbfe4a9ea
2   lib,
3   fetchFromGitLab,
4   buildDunePackage,
5 }:
7 buildDunePackage rec {
8   pname = "domain_shims";
9   version = "0.1.0";
11   src = fetchFromGitLab {
12     owner = "gasche";
13     repo = "domain-shims";
14     rev = version;
15     hash = "sha256-/5Cw+M0A1rnT7gFqzryd4Z0tylN0kZgSBXtn9jr8u1c=";
16   };
18   minimalOCamlVersion = "4.12";
20   meta = {
21     homepage = "https://gitlab.com/gasche/domain-shims/";
22     description = "Non-parallel implementation of Domains compatible with OCaml 4";
23     license = lib.licenses.mit;
24     maintainers = [ lib.maintainers.vbgl ];
25   };