passepartui: init at 0.1.3 (#357156)

This commit is contained in:
Aleksana 2024-11-24 11:47:24 +08:00 committed by GitHub
commit 435dcea9ce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,33 @@
{
lib,
fetchFromGitHub,
nix-update-script,
rustPlatform,
}:
rustPlatform.buildRustPackage rec {
pname = "passepartui";
version = "0.1.4";
src = fetchFromGitHub {
owner = "kardwen";
repo = "passepartui";
rev = "refs/tags/v${version}";
hash = "sha256-ydX+Rjpfhi0K6f8pzjqWGF0O22gBco6Iot8fXSFNG5c=";
};
cargoHash = "sha256-/lgEQ6PmHagt8TlGUV2A95MbV8IQzUwyQ/UkoaGIVHE=";
passthru = {
updateScript = nix-update-script { };
};
meta = {
description = "TUI for pass, the standard unix password manager";
homepage = "https://github.com/kardwen/passepartui";
changelog = "https://github.com/kardwen/passepartui/releases/tag/v${version}";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ getchoo ];
mainProgram = "passepartui";
};
}