mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
ocamlPackages.aches: init at 1.0.0
This commit is contained in:
parent
09a21ed0ac
commit
1d35a119c7
3 changed files with 35 additions and 0 deletions
16
pkgs/development/ocaml-modules/aches/default.nix
Normal file
16
pkgs/development/ocaml-modules/aches/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{ lib, buildDunePackage, ringo }:
|
||||
|
||||
buildDunePackage {
|
||||
pname = "aches";
|
||||
inherit (ringo) src version;
|
||||
|
||||
propagatedBuildInputs = [
|
||||
ringo
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Caches (bounded-size stores) for in-memory values and for resources";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.ulrikstrid ];
|
||||
};
|
||||
}
|
17
pkgs/development/ocaml-modules/aches/lwt.nix
Normal file
17
pkgs/development/ocaml-modules/aches/lwt.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ lib, buildDunePackage, ringo, aches, lwt }:
|
||||
|
||||
buildDunePackage {
|
||||
pname = "aches-lwt";
|
||||
inherit (ringo) src version;
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aches
|
||||
lwt
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Caches (bounded-size stores) for Lwt promises";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.ulrikstrid ];
|
||||
};
|
||||
}
|
|
@ -9,6 +9,8 @@ let
|
|||
inherit ocaml;
|
||||
|
||||
### A ###
|
||||
aches = callPackage ../development/ocaml-modules/aches { };
|
||||
aches-lwt = callPackage ../development/ocaml-modules/aches/lwt.nix { };
|
||||
|
||||
afl-persistent = callPackage ../development/ocaml-modules/afl-persistent { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue