mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
ocamlPackages.domain_shims: init at 0.1.0
This commit is contained in:
parent
01e73743e0
commit
06831bc171
22
pkgs/development/ocaml-modules/domain_shims/default.nix
Normal file
22
pkgs/development/ocaml-modules/domain_shims/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ lib, fetchFromGitLab, buildDunePackage }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "domain_shims";
|
||||
version = "0.1.0";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "gasche";
|
||||
repo = "domain-shims";
|
||||
rev = version;
|
||||
hash = "sha256-/5Cw+M0A1rnT7gFqzryd4Z0tylN0kZgSBXtn9jr8u1c=";
|
||||
};
|
||||
|
||||
minimalOCamlVersion = "4.12";
|
||||
|
||||
meta = {
|
||||
homepage = "https://gitlab.com/gasche/domain-shims/";
|
||||
description = "A non-parallel implementation of Domains compatible with OCaml 4";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.vbgl ];
|
||||
};
|
||||
}
|
@ -347,6 +347,8 @@ let
|
||||
|
||||
domain-name = callPackage ../development/ocaml-modules/domain-name { };
|
||||
|
||||
domain_shims = callPackage ../development/ocaml-modules/domain_shims { };
|
||||
|
||||
domainslib = callPackage ../development/ocaml-modules/domainslib { };
|
||||
|
||||
dose3 = callPackage ../development/ocaml-modules/dose3 { };
|
||||
|
Loading…
Reference in New Issue
Block a user