504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
20 lines
529 B
Nix
20 lines
529 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 = "A CLI-tool to diff Keepass (.kdbx) files";
|
|
homepage = "https://keepass-diff.narigo.dev/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ wamserma ];
|
|
};
|
|
}
|