bufisk: init at 0.1.0

This commit is contained in:
Aaron Jheng 2024-01-15 10:16:25 +08:00
parent c2b0177244
commit 684e0d4b77
No known key found for this signature in database
GPG Key ID: F6A547A869D050A3

View File

@ -0,0 +1,28 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "bufisk";
version = "0.1.0";
src = fetchFromGitHub {
owner = "bufbuild";
repo = "bufisk";
rev = "v${version}";
hash = "sha256-pVnqvQn7jwpx6T3sS4eA29JeJdh0GrPVm0J8n2UjJTw=";
};
vendorHash = "sha256-iv5zIn9C56AQB87T+n5fJzm/fhBFBUObFwrlJ72A/J4=";
ldflags = [ "-s" "-w" ];
meta = with lib; {
homepage = "https://github.com/bufbuild/bufisk";
description = "A user-friendly launcher for Buf";
license = licenses.asl20;
maintainers = with maintainers; [ aaronjheng ];
mainProgram = "bufisk";
};
}