nur-packages

My NUR packages
git clone git://git.sikmir.ru/nur-packages
Log | Files | Refs | README | LICENSE

commit 7691f30f5493fdbc55ecfee9f71914c9f43aaaeb
parent 5ecd4ec64c8d78157bb63e0e3171737477dbfc14
Author: Nikolay Korotkiy <sikmir@gmail.com>
Date:   Fri, 16 Oct 2020 01:20:53 +0300

Add kiln

Diffstat:
Mpkgs/default.nix | 1+
Apkgs/development/tools/kiln/default.nix | 22++++++++++++++++++++++
2 files changed, 23 insertions(+), 0 deletions(-)

diff --git a/pkgs/default.nix b/pkgs/default.nix @@ -81,6 +81,7 @@ lib.makeScope newScope ( ### DEVELOPMENT / TOOLS gef = callPackage ./development/tools/gef { }; + kiln = callPackage ./development/tools/kiln { }; how-to-use-pvs-studio-free = callPackage ./development/tools/pvs-studio/how-to-use-pvs-studio-free.nix { }; pvs-studio = callPackage ./development/tools/pvs-studio { }; diff --git a/pkgs/development/tools/kiln/default.nix b/pkgs/development/tools/kiln/default.nix @@ -0,0 +1,22 @@ +{ lib, buildGoModule, fetchgit, sources }: + +buildGoModule { + pname = "shavit"; + version = "unstable-2020-10-14"; + + src = fetchgit { + url = "https://git.sr.ht/~adnano/kiln"; + rev = "fa7c320822e1a0abb86100ad47d067538b6b4f34"; + sha256 = "0sd7plm820z3dwvfsr2cs4rq5kkqf0ykg2gpsrwqr9604l41sklg"; + }; + + vendorSha256 = "0misd11hb9qrd8q668ms12lhk9ijx7nnjxy7qyr9lydnv8v8hz6i"; + + meta = with lib; { + description = "A simple static site generator for Gemini"; + homepage = "https://git.sr.ht/~adnano/kiln"; + license = licenses.mit; + maintainers = [ maintainers.sikmir ]; + platforms = platforms.unix; + }; +}