Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
699 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildDunePackage,
fetchurl,
camlp-streams,
}:
buildDunePackage (finalAttrs: {
pname = "ocamlify";
version = "0.1.0";
src = fetchurl {
url = "https://github.com/gildor478/ocamlify/releases/download/v${finalAttrs.version}/ocamlify-${finalAttrs.version}.tbz";
hash = "sha256-u0pGiwLR/5N0eRv+eSkdR71snyiSDPwh8JwuxbcXIGA=";
};
propagatedBuildInputs = [
camlp-streams
];
doCheck = true;
dontStrip = true;
meta = {
homepage = "https://github.com/gildor478/ocamlify";
description = "Include files in OCaml code";
license = lib.licenses.lgpl21;
maintainers = with lib.maintainers; [
maggesi
];
mainProgram = "ocamlify";
};
})