5d26766cbf
Added homepage where missing, where the sources are pulled from: - https://github.com - https://git.sr.ht - https://gitlab.com - https://invent.kde.org - https://codeberg.org - https://gitlab.gnome.org - https://gitlab.freedesktop.org - https://git.FreeBSD.org - https://salsa.debian.org - https://git.tvdr.de - https://git.suckless.org
27 lines
573 B
Nix
27 lines
573 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildDunePackage,
|
|
}:
|
|
|
|
buildDunePackage (finalAttrs: {
|
|
pname = "hashcons";
|
|
version = "1.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "backtracking";
|
|
repo = "ocaml-hashcons";
|
|
rev = "d733325eeb55878bed285120c2c088daf78f0e2b";
|
|
hash = "sha256-+KMmPj+DzuoofTXimxi0kXMPwqFwSnUHV81eMiTfl0A=";
|
|
};
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
description = "OCaml hash-consing library";
|
|
homepage = "https://github.com/backtracking/ocaml-hashcons";
|
|
license = lib.licenses.lgpl21;
|
|
maintainers = [ lib.maintainers.ulrikstrid ];
|
|
};
|
|
})
|