mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
31 lines
699 B
Nix
31 lines
699 B
Nix
{ lib, buildGoModule, fetchFromSourcehut, scdoc }:
|
|
|
|
buildGoModule rec {
|
|
pname = "kiln";
|
|
version = "0.2.1";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~adnano";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-c6ed62Nn++qw+U/DCiYeGwF77YsBxexWKZ7UQ3LE4fI=";
|
|
};
|
|
|
|
nativeBuildInputs = [ scdoc ];
|
|
|
|
vendorSha256 = "sha256-bMpzebwbVHAbBtw0uuGyWd4wnM9z6tlsEQN4S/iucgk=";
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
make PREFIX=$out install
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A simple static site generator for Gemini";
|
|
homepage = "https://git.sr.ht/~adnano/kiln";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ sikmir ];
|
|
};
|
|
}
|