depot/third_party/nixpkgs/pkgs/by-name/pu/puffin/package.nix
Default email 657f08b14c Project import generated by Copybara.
GitOrigin-RevId: 807e9154dcb16384b1b765ebe9cd2bba2ac287fd
2024-10-29 11:11:06 +00:00

26 lines
596 B
Nix

{
lib,
fetchFromGitHub,
buildGoModule,
}:
buildGoModule rec {
pname = "puffin";
version = "2.1.1";
src = fetchFromGitHub {
owner = "siddhantac";
repo = pname;
rev = "v${version}";
hash = "sha256-5lglIiVOsxnMbeR/E3O5TaMtoR5DJACWjStE4d7hDao=";
};
vendorHash = "sha256-ZxAqR3D5VUtbntktrpnywPG3m9rq1utO4fdum0Qe6TU=";
meta = {
description = "Beautiful terminal dashboard for hledger";
homepage = "https://github.com/siddhantac/puffin";
license = lib.licenses.mit;
mainProgram = "puffin";
maintainers = with lib.maintainers; [ renesat ];
};
}