xin/pkgs/bearclaw.nix

27 lines
569 B
Nix
Raw Normal View History

2023-09-12 08:44:05 -06:00
{ lib
, buildGoModule
, fetchFromGitHub
, ...
2023-07-11 09:12:50 -06:00
}:
2023-03-02 10:54:02 -07:00
with lib;
2023-09-12 08:44:05 -06:00
buildGoModule rec {
pname = "bearclaw";
version = "1.1.0";
2023-03-02 10:54:02 -07:00
2023-09-12 08:44:05 -06:00
src = fetchFromGitHub {
owner = "donuts-are-good";
repo = pname;
rev = "${version}";
sha256 = "sha256-AhqW+AAEBbAPJO0hnZnC5a/u4IKyLII6OWYEQzoX0C8=";
};
2023-03-02 10:54:02 -07:00
2023-11-15 10:23:30 -07:00
vendorHash = "sha256-7XFvghT411YE+Y9bYEFOKR655EaFS4GZiDzUYiYRbMY=";
2023-03-02 10:54:02 -07:00
2023-09-12 08:44:05 -06:00
meta = {
description = "tiny static site generator";
homepage = "https://github.com/donuts-are-good/bearclaw";
license = licenses.mit;
maintainers = with maintainers; [ qbit ];
};
}