nixpkgs/pkgs/applications/misc/keepass-diff/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

22 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";
};
}