822d27c8cd
Inactive since 2019/2020.
31 lines
636 B
Nix
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";
|
|
};
|
|
})
|