keepass-diff: init at 1.1.3

This commit is contained in:
Markus S. Wamser 2023-01-02 12:08:07 +01:00 committed by obadz
parent fef2ec01cf
commit eae9a09270
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "keepass-diff";
version = "1.1.3";
src = fetchFromGitHub {
owner = "Narigo";
repo = pname;
rev = version;
sha256 = "sha256-jd/cUkTHylLwzxolQUzMlXHauCfXUhcUr/1zKpdngbo=";
};
cargoSha256 = "sha256-2e2lGG72HmX7AFk0+J3U62Kch5ylrqvaIpitRF546JA=";
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 ];
};
}

View file

@ -28675,6 +28675,8 @@ with pkgs;
keepassx2 = callPackage ../applications/misc/keepassx/2.0.nix { };
keepassxc = libsForQt5.callPackage ../applications/misc/keepassx/community.nix { };
keepass-diff = callPackage ../applications/misc/keepass-diff { };
keeweb = callPackage ../applications/misc/keeweb { };
inherit (gnome) evince;