pkgs: add gokrazy package
This commit is contained in:
parent
bfb1d75cf2
commit
87c4c5ff6a
@ -273,6 +273,7 @@
|
||||
inherit (pkgs.python39Packages) requests;
|
||||
};
|
||||
golink = pkgs.callPackage ./pkgs/golink.nix { inherit pkgs; };
|
||||
gokrazy = pkgs.callPackage ./pkgs/gokrazy.nix { inherit pkgs; };
|
||||
gosignify = pkgs.callPackage ./pkgs/gosignify.nix { inherit pkgs; };
|
||||
gotosocial = pkgs.callPackage ./pkgs/gotosocial.nix { inherit pkgs; };
|
||||
govulncheck =
|
||||
|
@ -258,6 +258,7 @@ in {
|
||||
|
||||
talon
|
||||
|
||||
(callPackage ../../pkgs/gokrazy.nix { })
|
||||
(callPackage ../../pkgs/zutty.nix { })
|
||||
];
|
||||
|
||||
|
26
pkgs/gokrazy.nix
Normal file
26
pkgs/gokrazy.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub, ... }:
|
||||
with lib;
|
||||
buildGoModule {
|
||||
pname = "gokrazy";
|
||||
version = "0.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "gokrazy";
|
||||
repo = "tools";
|
||||
rev = "b89d9dc6e09742ea23492bb84021da70b2965bff";
|
||||
sha256 = "sha256-1nWpLQMDvtV83HFvmrNdN31DVENq3HUqk/6+zuavoTU=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-d6je2aRHlgP4r/Yg55zezRMTul1p5aLEpxfLb3V6BFg=";
|
||||
|
||||
proxyVendor = true;
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "CLI tools for gokrazy";
|
||||
homepage = "https://github.com/gokrazy/tools";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ qbit ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user