forked from mirrors/nixpkgs
keepass-diff: init at 1.1.3
This commit is contained in:
parent
fef2ec01cf
commit
eae9a09270
22
pkgs/applications/misc/keepass-diff/default.nix
Normal file
22
pkgs/applications/misc/keepass-diff/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue