mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
bufisk: init at 0.1.0
This commit is contained in:
parent
c2b0177244
commit
684e0d4b77
28
pkgs/by-name/bu/bufisk/package.nix
Normal file
28
pkgs/by-name/bu/bufisk/package.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user