nixpkgs/pkgs/applications/misc/keepass-diff/default.nix

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

22 lines
563 B
Nix
Raw Normal View History

2023-11-19 17:15:36 +00:00
{ lib, fetchCrate, rustPlatform }:
2023-01-02 11:08:07 +00:00
rustPlatform.buildRustPackage rec {
pname = "keepass-diff";
2023-11-19 17:15:36 +00:00
version = "1.2.0";
2023-01-02 11:08:07 +00:00
2023-11-19 17:15:36 +00:00
src = fetchCrate {
inherit pname version;
hash = "sha256-CqLH5Dosp26YfqgOVcZilfo5svAEv+pAbi1zebGMnb4=";
2023-01-02 11:08:07 +00:00
};
2023-11-19 17:15:36 +00:00
cargoHash = "sha256-+kgb9hbCH4Nt80nobTeDrC+LVp1r6EbzUs+t6zlIhtU=";
2023-01-02 11:08:07 +00:00
meta = with lib; {
description = "A CLI-tool to diff Keepass (.kdbx) files";
homepage = "https://keepass-diff.narigo.dev/";
license = licenses.mit;
maintainers = with maintainers; [ wamserma ];
2024-02-11 02:19:15 +00:00
mainProgram = "keepass-diff";
2023-01-02 11:08:07 +00:00
};
}