ocamlPackages.hashcons: init at 1.4

main
Ulrik Strid 3 years ago committed by Vincent Laporte
parent f470e6ddd9
commit 8b247a73bd
  1. 23
      pkgs/development/ocaml-modules/hashcons/default.nix
  2. 2
      pkgs/top-level/ocaml-packages.nix

@ -0,0 +1,23 @@
{ lib, fetchFromGitHub, buildDunePackage }:
buildDunePackage rec {
pname = "hashcons";
version = "1.4";
src = fetchFromGitHub {
owner = "backtracking";
repo = "ocaml-${pname}";
rev = "d733325eeb55878bed285120c2c088daf78f0e2b";
sha256 = "0h4pvwj34pndaw3pajkhl710ywwinhc9pqimgllfmkl37wz2d8zq";
};
useDune2 = true;
doCheck = true;
meta = {
description = "OCaml hash-consing library";
license = lib.licenses.lgpl21;
maintainers = [ lib.maintainers.ulrikstrid ];
};
}

@ -428,6 +428,8 @@ let
hacl-star = callPackage ../development/ocaml-modules/hacl-star { };
hacl-star-raw = callPackage ../development/ocaml-modules/hacl-star/raw.nix { };
hashcons = callPackage ../development/ocaml-modules/hashcons { };
herelib = callPackage ../development/ocaml-modules/herelib { };
hidapi = callPackage ../development/ocaml-modules/hidapi { };

Loading…
Cancel
Save