Merge pull request #202982 from urandom2/gostatic

gostatic: init at 2.34

authored by

Jonas Heinrich and committed by
GitHub
7ec2980f cc53a6e0

+27
+25
pkgs/applications/misc/gostatic/default.nix
··· 1 + { buildGoModule 2 + , fetchFromGitHub 3 + , lib 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "gostatic"; 8 + version = "2.34"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "piranha"; 12 + repo = pname; 13 + rev = version; 14 + hash = "sha256-rdbiIFRZcn9dVaF2anl2iy6FM6boz38vjn+hCpMwcis="; 15 + }; 16 + 17 + vendorHash = "sha256-9YCt9crLuYjd+TUXJyx/EAYIMWM5TD+ZyzLeu0RMxVc="; 18 + 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 + }; 25 + }
+2
pkgs/top-level/all-packages.nix
··· 29149 29149 29150 29150 go-graft = callPackage ../applications/networking/go-graft { }; 29151 29151 29152 + gostatic = callPackage ../applications/misc/gostatic {}; 29153 + 29152 29154 gosmore = callPackage ../applications/misc/gosmore { stdenv = gcc10StdenvCompat; }; 29153 29155 29154 29156 gpsbabel = libsForQt5.callPackage ../applications/misc/gpsbabel { };