Files
nixpkgs/pkgs/development/tools/ocaml/ocamlify/default.nix
T
Wolfgang Walther 822d27c8cd maintainers: drop maggesi
Inactive since 2019/2020.
2025-10-17 09:21:39 +02:00

31 lines
636 B
Nix

{
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;
mainProgram = "ocamlify";
};
})