Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
568 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
fetchCrate,
rustPlatform,
}:
rustPlatform.buildRustPackage rec {
pname = "keepass-diff";
version = "1.2.0";
src = fetchCrate {
inherit pname version;
hash = "sha256-CqLH5Dosp26YfqgOVcZilfo5svAEv+pAbi1zebGMnb4=";
};
cargoHash = "sha256-QjcXeLLIvegzETIu3xbZQ+o2WYxR6xkALVOOWYWhGUo=";
meta = with lib; {
description = "CLI-tool to diff Keepass (.kdbx) files";
homepage = "https://keepass-diff.narigo.dev/";
license = licenses.mit;
maintainers = with maintainers; [ wamserma ];
mainProgram = "keepass-diff";
};
}