mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 01:24:47 +00:00
keepassxc-go: init at 1.5.1
This commit is contained in:
parent
7a2f64c491
commit
2d78e1b237
38
pkgs/by-name/ke/keepassxc-go/package.nix
Normal file
38
pkgs/by-name/ke/keepassxc-go/package.nix
Normal file
@ -0,0 +1,38 @@
|
||||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
, installShellFiles
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "keepassxc-go";
|
||||
version = "1.5.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "MarkusFreitag";
|
||||
repo = "keepassxc-go";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-seCeHNEj5GxAI7BVMPzh+YuoxivmTwvhVCqY5LKHpQk=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ installShellFiles ];
|
||||
|
||||
vendorHash = "sha256-jscyNyVr+RDN1EaxIOc3aYCAVT+1eO/c+dxEsIorDIs=";
|
||||
|
||||
postInstall = ''
|
||||
local INSTALL="$out/bin/keepassxc-go"
|
||||
installShellCompletion --cmd keepassxc-go \
|
||||
--bash <($out/bin/keepassxc-go completion bash) \
|
||||
--fish <($out/bin/keepassxc-go completion fish) \
|
||||
--zsh <($out/bin/keepassxc-go completion zsh)
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Library and basic CLI tool to interact with KeepassXC via unix socket";
|
||||
homepage = "https://github.com/MarkusFreitag/keepassxc-go";
|
||||
changelog = "https://github.com/MarkusFreitag/keepassxc-go/releases/tag/v${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ xgwq ];
|
||||
mainProgram = "keepassxc-go";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user