about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/kiln/default.nix
blob: 8a64668393d8ae4a461bfe5b5bdd16ea7f6cce69 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib, buildGoModule, fetchFromSourcehut, scdoc, installShellFiles }:

buildGoModule rec {
  pname = "kiln";
  version = "0.4.0";

  src = fetchFromSourcehut {
    owner = "~adnano";
    repo = "kiln";
    rev = version;
    hash = "sha256-BMYySYbV4Exl0gCUt+95FnOoIhKM1UO4cw8gCw3Zf9M=";
  };

  nativeBuildInputs = [ scdoc installShellFiles ];

  vendorSha256 = "sha256-C1ueL/zmPzFbpNo5BF56/t74nwCUvb2Vu1exssPqOPE=";

  postInstall = ''
    scdoc < docs/kiln.1.scd > docs/kiln.1
    installManPage docs/kiln.1
  '';

  meta = with lib; {
    description = "A simple static site generator for Gemini";
    homepage = "https://kiln.adnano.co/";
    license = licenses.mit;
    maintainers = with maintainers; [ sikmir ];
  };
}