Files

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

27 lines
521 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildDunePackage,
fetchFromGitHub,
uri,
}:
buildDunePackage rec {
pname = "pure-html";
version = "3.11.1";
src = fetchFromGitHub {
owner = "yawaramin";
repo = "dream-html";
tag = "v${version}";
hash = "sha256-L/q3nxUONPdZtzmfCfP8nnNCwQNSpeYI0hqowioGYNg=";
};
propagatedBuildInputs = [ uri ];
meta = {
description = "Write HTML directly in your OCaml source files with editor support";
license = lib.licenses.gpl3;
maintainers = [ lib.maintainers.naora ];
};
}