mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
ldash: init at 1.3.1
This commit is contained in:
parent
adda32c0e4
commit
7e309d0c94
1 changed files with 32 additions and 0 deletions
32
pkgs/by-name/ld/ldash/package.nix
Normal file
32
pkgs/by-name/ld/ldash/package.nix
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
lib,
|
||||
rustPlatform,
|
||||
fetchFromGitea,
|
||||
nix-update-script,
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage (finalAttrs: {
|
||||
pname = "ldash";
|
||||
version = "1.3.1";
|
||||
__structuredAttrs = true;
|
||||
|
||||
src = fetchFromGitea {
|
||||
domain = "codeberg.org";
|
||||
owner = "md-weber";
|
||||
repo = "ldash";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-ji1sgzDjJ8KVUVaKzhhCFBgIAAzRS2NQ7DTvJxb3PKA=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-9/Dk3FQuSlUWPm4z3VadJl5FYtZ1gFY9mdZwiSXzzvc=";
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = {
|
||||
description = "This is a TUI for hledger to show a nice dashboard";
|
||||
homepage = "https://codeberg.org/md-weber/ldash";
|
||||
license = lib.licenses.gpl3Only;
|
||||
maintainers = with lib.maintainers; [ matthewcroughan ];
|
||||
mainProgram = "ldash";
|
||||
};
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue