6d4aeb4377
GitOrigin-RevId: 0f213d0fee84280d8c3a97f7469b988d6fe5fcdf
22 lines
575 B
Nix
22 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 ];
|
|
};
|
|
}
|