mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
ocamlPackages.ptset: init at 1.0.1
This commit is contained in:
parent
d3e701f5f7
commit
b2f814144e
2 changed files with 28 additions and 0 deletions
26
pkgs/development/ocaml-modules/ptset/default.nix
Normal file
26
pkgs/development/ocaml-modules/ptset/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ lib, fetchurl, buildDunePackage
|
||||
, stdlib-shims
|
||||
}:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "ptset";
|
||||
version = "1.0.1";
|
||||
|
||||
useDune2 = true;
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/backtracking/ptset/releases/download/${version}/ptset-${version}.tbz";
|
||||
sha256 = "1pr80mgk12l93mdq1wfsv2b6ccraxs334d5h92qzjh7bw2g13424";
|
||||
};
|
||||
|
||||
doCheck = true;
|
||||
|
||||
propagatedBuildInputs = [ stdlib-shims ];
|
||||
|
||||
meta = {
|
||||
description = "Integer set implementation using Patricia trees";
|
||||
homepage = "https://github.com/backtracking/ptset";
|
||||
license = lib.licenses.lgpl21;
|
||||
maintainers = [ lib.maintainers.vbgl ];
|
||||
};
|
||||
}
|
|
@ -882,6 +882,8 @@ let
|
|||
|
||||
ptmap = callPackage ../development/ocaml-modules/ptmap { };
|
||||
|
||||
ptset = callPackage ../development/ocaml-modules/ptset { };
|
||||
|
||||
pycaml = callPackage ../development/ocaml-modules/pycaml { };
|
||||
|
||||
qcheck = callPackage ../development/ocaml-modules/qcheck { };
|
||||
|
|
Loading…
Reference in a new issue