gokrazy: init at unstable-2023-08-12

This commit is contained in:
shayne 2023-08-26 10:57:53 -04:00
parent 7f08d0bdf5
commit f08fa38713
No known key found for this signature in database
GPG Key ID: 69DA13E86BF403B0
2 changed files with 29 additions and 0 deletions

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";
};
}

View File

@ -674,6 +674,8 @@ with pkgs;
goda = callPackage ../development/tools/goda { };
gokrazy = callPackage ../development/misc/gokrazy { };
gojq = callPackage ../development/tools/gojq { };
govulncheck = callPackage ../tools/security/govulncheck { };