biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / keepass-diff / default.nix
blobc7546cb0045584e7c2f7008614376de0980ba27b
1 { lib, fetchCrate, rustPlatform }:
3 rustPlatform.buildRustPackage rec {
4   pname = "keepass-diff";
5   version = "1.2.0";
7   src = fetchCrate {
8     inherit pname version;
9     hash = "sha256-CqLH5Dosp26YfqgOVcZilfo5svAEv+pAbi1zebGMnb4=";
10   };
12   cargoHash = "sha256-+kgb9hbCH4Nt80nobTeDrC+LVp1r6EbzUs+t6zlIhtU=";
14   meta = with lib; {
15     description = "CLI-tool to diff Keepass (.kdbx) files";
16     homepage = "https://keepass-diff.narigo.dev/";
17     license = licenses.mit;
18     maintainers = with maintainers; [ wamserma ];
19     mainProgram = "keepass-diff";
20   };