mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 09:14:28 +00:00
puffin: init at 1.7.1
This commit is contained in:
parent
e4735dbdda
commit
9bf46703f8
26
pkgs/by-name/pu/puffin/package.nix
Normal file
26
pkgs/by-name/pu/puffin/package.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{
|
||||
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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user