mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 04:33:57 +00:00
23 lines
575 B
Nix
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 ];
|
|
};
|
|
}
|