mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
ocamlPackages.lru: init at 0.2.0
lru provides LRU caches for OCaml. Homepage: https://github.com/pqwy/lru
This commit is contained in:
parent
8278df916d
commit
14608047f4
27
pkgs/development/ocaml-modules/lru/default.nix
Normal file
27
pkgs/development/ocaml-modules/lru/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, psq }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "ocaml${ocaml.version}-lru-${version}";
|
||||
version = "0.2.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/pqwy/lru/releases/download/v${version}/lru-${version}.tbz";
|
||||
sha256 = "0bd7js9rrma1fjjjjc3fgr9l5fjbhgihx2nsaf96g2b35iiaimd0";
|
||||
};
|
||||
|
||||
unpackCmd = "tar -xjf $curSrc";
|
||||
|
||||
buildInputs = [ ocaml findlib ocamlbuild topkg ];
|
||||
|
||||
propagatedBuildInputs = [ psq ];
|
||||
|
||||
inherit (topkg) buildPhase installPhase;
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/pqwy/lru";
|
||||
description = "Scalable LRU caches for OCaml";
|
||||
maintainers = [ stdenv.lib.maintainers.vbgl ];
|
||||
license = stdenv.lib.licenses.isc;
|
||||
inherit (ocaml.meta) platforms;
|
||||
};
|
||||
}
|
@ -349,6 +349,8 @@ let
|
||||
lwt = ocaml_lwt;
|
||||
};
|
||||
|
||||
lru = callPackage ../development/ocaml-modules/lru { };
|
||||
|
||||
lwt2 = callPackage ../development/ocaml-modules/lwt { };
|
||||
|
||||
lwt3 = if lib.versionOlder "4.02" ocaml.version
|
||||
|
Loading…
Reference in New Issue
Block a user