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
26 lines
558 B
Nix
26 lines
558 B
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildDunePackage (finalAttrs: {
|
|
pname = "camlp-streams";
|
|
version = "5.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ocaml";
|
|
repo = "camlp-streams";
|
|
rev = "v${finalAttrs.version}";
|
|
sha256 = "sha256-kHuFBqu0mjFv53sOtmFZcX2reo5ToaOpItP7P53bfGQ=";
|
|
};
|
|
|
|
meta = {
|
|
description = "Stream and Genlex libraries for use with Camlp4 and Camlp5";
|
|
homepage = "https://github.com/ocaml/camlp-streams";
|
|
license = lib.licenses.lgpl21Only;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
};
|
|
|
|
})
|