nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 fetchFromGitHub,
4 buildDunePackage,
5}:
6
7buildDunePackage (finalAttrs: {
8 pname = "hashcons";
9 version = "1.4.0";
10
11 src = fetchFromGitHub {
12 owner = "backtracking";
13 repo = "ocaml-hashcons";
14 rev = "d733325eeb55878bed285120c2c088daf78f0e2b";
15 hash = "sha256-+KMmPj+DzuoofTXimxi0kXMPwqFwSnUHV81eMiTfl0A=";
16 };
17
18 doCheck = true;
19
20 meta = {
21 description = "OCaml hash-consing library";
22 license = lib.licenses.lgpl21;
23 maintainers = [ lib.maintainers.ulrikstrid ];
24 };
25})