xin/pkgs/gokrazy.nix

31 lines
616 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";
version = "0.0.0";
2023-01-14 05:35:59 -07:00
2023-09-12 08:44:05 -06:00
src = fetchFromGitHub {
owner = "gokrazy";
repo = "tools";
rev = "b89d9dc6e09742ea23492bb84021da70b2965bff";
sha256 = "sha256-1nWpLQMDvtV83HFvmrNdN31DVENq3HUqk/6+zuavoTU=";
};
2023-01-14 05:35:59 -07:00
2023-11-15 10:23:30 -07:00
vendorHash = "sha256-d6je2aRHlgP4r/Yg55zezRMTul1p5aLEpxfLb3V6BFg=";
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 ];
};
}