Merge pull request #251277 from shayne/master

gokrazy: init at unstable-2023-08-12
This commit is contained in:
Mario Rodas
2023-08-26 16:05:12 -05:00
committed by GitHub
3 changed files with 38 additions and 0 deletions
+9
View File
@@ -15512,6 +15512,15 @@
githubId = 293035;
name = "Shawn Dellysse";
};
shayne = {
email = "shaynesweeney@gmail.com";
github = "shayne";
githubId = 79330;
name = "Shayne Sweeney";
keys = [{
fingerprint = "AFCB 29A0 F12E F367 9575 DABE 69DA 13E8 6BF4 03B0";
}];
};
shazow = {
email = "andrey.petrov@shazow.net";
github = "shazow";
+27
View File
@@ -0,0 +1,27 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "gokrazy";
version = "unstable-2023-08-12";
src = fetchFromGitHub {
owner = "gokrazy";
repo = "tools";
rev = "23cde3b0d858497a63c21e93ad30859bf197995f";
hash = "sha256-oqtkC04TaOkcXkGAZzATCBA0XnFsx7bSGP9ODyhgAxQ=";
};
vendorHash = "sha256-rIIMqYMgLNCMYEH+44v79i8yGbHDmUY21X3h1E2jP9Q=";
ldflags = [ "-s" "-w" "-X=main.Version=${version}" ];
subPackages = [ "cmd/gok" ];
meta = with lib; {
description = "Turn your Go program(s) into an appliance running on the Raspberry Pi 3, Pi 4, Pi Zero 2 W, or amd64 PCs!";
homepage = "https://github.com/gokrazy/gokrazy";
license = licenses.bsd3;
maintainers = with maintainers; [ shayne ];
mainProgram = "gok";
};
}
+2
View File
@@ -676,6 +676,8 @@ with pkgs;
goda = callPackage ../development/tools/goda { };
gokrazy = callPackage ../development/misc/gokrazy { };
gojq = callPackage ../development/tools/gojq { };
govulncheck = callPackage ../tools/security/govulncheck { };