nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 fetchurl,
4 buildTopkgPackage,
5}:
6
7buildTopkgPackage rec {
8 pname = "htmlit";
9 version = "0.2.0";
10
11 minimalOCamlVersion = "4.14.0";
12
13 src = fetchurl {
14 url = "https://erratique.ch/software/htmlit/releases/htmlit-${version}.tbz";
15 hash = "sha256-i+7gYle8G2y78GeoAnlNY5dpdONLhltuswusCbMmB/c=";
16 };
17
18 meta = {
19 description = "HTML generation combinators for OCaml";
20 homepage = "https://erratique.ch/software/htmlit";
21 license = lib.licenses.isc;
22 maintainers = with lib.maintainers; [ redianthus ];
23 };
24}