Files

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 ];
};
})