nerdfonts: fix wrong attribute name in error message (#364463)
[NixPkgs.git] / pkgs / development / ocaml-modules / hashcons / default.nix
blob72f81ca051dedeca5acb6883436ad93b1b6c242e
2   lib,
3   fetchFromGitHub,
4   buildDunePackage,
5 }:
7 buildDunePackage rec {
8   pname = "hashcons";
9   version = "1.4";
11   src = fetchFromGitHub {
12     owner = "backtracking";
13     repo = "ocaml-${pname}";
14     rev = "d733325eeb55878bed285120c2c088daf78f0e2b";
15     sha256 = "0h4pvwj34pndaw3pajkhl710ywwinhc9pqimgllfmkl37wz2d8zq";
16   };
18   useDune2 = true;
20   doCheck = true;
22   meta = {
23     description = "OCaml hash-consing library";
24     license = lib.licenses.lgpl21;
25     maintainers = [ lib.maintainers.ulrikstrid ];
26   };