biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / gostatic / default.nix
blobb7967f6f4e4ffb14293646141030078c9c80219b
1 { buildGoModule
2 , fetchFromGitHub
3 , lib
4 }:
6 buildGoModule rec {
7   pname = "gostatic";
8   version = "2.35";
10   src = fetchFromGitHub {
11     owner = "piranha";
12     repo = pname;
13     rev = version;
14     hash = "sha256-pxk9tauB7u0oe6g4maHh+dREZXKwMz44v3KB43yYW6c=";
15   };
17   vendorHash = "sha256-9YCt9crLuYjd+TUXJyx/EAYIMWM5TD+ZyzLeu0RMxVc=";
19   meta = with lib; {
20     description = "Fast static site generator";
21     homepage = "https://github.com/piranha/gostatic";
22     license = licenses.isc;
23     maintainers = with maintainers; [ urandom ];
24     mainProgram = "gostatic";
25   };