mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 06:23:36 +00:00
43 lines
1.3 KiB
Nix
43 lines
1.3 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, withNotification ? false
|
|
, withYubikey ? false
|
|
, withStrictCaller ? false
|
|
, withAll ? false
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "git-credential-keepassxc";
|
|
version = "0.14.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Frederick888";
|
|
repo = "git-credential-keepassxc";
|
|
rev = "v${version}";
|
|
hash = "sha256-qxNzWuuIoK9BJLVcWtrER+MyA5cyd03xAwGljh8DZC4=";
|
|
};
|
|
|
|
cargoHash = "sha256-jBUp0jes4wtr8cmqceEBb6noqGkJUHbIfYgWOw5KMF4=";
|
|
|
|
buildFeatures = []
|
|
++ lib.optional withNotification "notification"
|
|
++ lib.optional withYubikey "yubikey"
|
|
++ lib.optional withStrictCaller "strict-caller"
|
|
++ lib.optional withAll "all";
|
|
|
|
meta = with lib; {
|
|
description = "Helper that allows Git (and shell scripts) to use KeePassXC as credential store";
|
|
longDescription = ''
|
|
git-credential-keepassxc is a Git credential helper that allows Git
|
|
(and shell scripts) to get/store logins from/to KeePassXC.
|
|
It communicates with KeePassXC using keepassxc-protocol which is
|
|
originally designed for browser extensions.
|
|
'';
|
|
homepage = "https://github.com/Frederick888/git-credential-keepassxc";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ fgaz ];
|
|
mainProgram = "git-credential-keepassxc";
|
|
};
|
|
}
|