depot/third_party/nixpkgs/pkgs/applications/misc/keepass-diff/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

21 lines
561 B
Nix

{ lib, fetchCrate, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "keepass-diff";
version = "1.2.0";
src = fetchCrate {
inherit pname version;
hash = "sha256-CqLH5Dosp26YfqgOVcZilfo5svAEv+pAbi1zebGMnb4=";
};
cargoHash = "sha256-+kgb9hbCH4Nt80nobTeDrC+LVp1r6EbzUs+t6zlIhtU=";
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";
};
}