xin/pkgs/gokrazy.nix

31 lines
621 B
Nix
Raw Normal View History

2023-09-12 08:44:05 -06:00
{ lib
, buildGoModule
, fetchFromGitHub
, ...
2023-07-11 09:12:50 -06:00
}:
2023-01-14 05:35:59 -07:00
with lib;
2023-09-12 08:44:05 -06:00
buildGoModule {
pname = "gokrazy";
2024-03-26 07:48:01 -06:00
version = "2023-12-22";
2023-01-14 05:35:59 -07:00
2023-09-12 08:44:05 -06:00
src = fetchFromGitHub {
owner = "gokrazy";
repo = "tools";
2024-03-26 07:48:01 -06:00
rev = "80a59f115332a41206487afc6038beaaed48ce70";
sha256 = "sha256-YOo2VhidMbc5Cmc3YHx4hb/vlbnXeyrWWGxuSJPdX/o=";
2023-09-12 08:44:05 -06:00
};
2023-01-14 05:35:59 -07:00
2024-03-26 07:48:01 -06:00
vendorHash = "sha256-BJTEP9n9oJcW2m5UAeExg3ydi+k9w4e+XLmxj/wGAl0=";
2023-01-14 05:35:59 -07:00
2023-09-12 08:44:05 -06:00
proxyVendor = true;
2023-01-14 05:35:59 -07:00
2023-09-12 08:44:05 -06:00
doCheck = false;
2023-01-14 05:35:59 -07:00
2023-09-12 08:44:05 -06:00
meta = {
description = "CLI tools for gokrazy";
homepage = "https://github.com/gokrazy/tools";
license = licenses.bsd3;
maintainers = with maintainers; [ qbit ];
};
}