1{ lib, fetchCrate, rustPlatform }:
2
3rustPlatform.buildRustPackage rec {
4 pname = "keepass-diff";
5 version = "1.2.0";
6
7 src = fetchCrate {
8 inherit pname version;
9 hash = "sha256-CqLH5Dosp26YfqgOVcZilfo5svAEv+pAbi1zebGMnb4=";
10 };
11
12 cargoHash = "sha256-+kgb9hbCH4Nt80nobTeDrC+LVp1r6EbzUs+t6zlIhtU=";
13
14 meta = with lib; {
15 description = "A CLI-tool to diff Keepass (.kdbx) files";
16 homepage = "https://keepass-diff.narigo.dev/";
17 license = licenses.mit;
18 maintainers = with maintainers; [ wamserma ];
19 };
20}