nixpkgs/pkgs/applications/misc/keepass-diff/default.nix
2023-01-02 21:14:15 +01:00

23 lines
575 B
Nix

{ 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 ];
};
}