mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
8dd417eed6
ocamlPackages.psq: 0.1.0 → 0.2.0
21 lines
517 B
Nix
21 lines
517 B
Nix
{ lib, fetchurl, buildDunePackage, psq }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "lru";
|
|
version = "0.3.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/pqwy/lru/releases/download/v${version}/lru-v${version}.tbz";
|
|
sha256 = "1ab9rd7cq15ml8x0wjl44wy99h5z7x4g9vkkz4i2d7n84ghy7vw4";
|
|
};
|
|
|
|
propagatedBuildInputs = [ psq ];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/pqwy/lru";
|
|
description = "Scalable LRU caches for OCaml";
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
license = lib.licenses.isc;
|
|
};
|
|
}
|