Merge pull request #126472 from ymatsiuk/lastpass-cli
lastpass-cli: Add gitcredentials helper and format
This commit is contained in:
commit
891bca0180
1 changed files with 22 additions and 6 deletions
|
@ -1,5 +1,16 @@
|
|||
{ stdenv, lib, fetchFromGitHub, asciidoc, cmake, docbook_xsl, pkg-config
|
||||
, bash-completion, openssl, curl, libxml2, libxslt }:
|
||||
{ stdenv
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
, asciidoc
|
||||
, cmake
|
||||
, docbook_xsl
|
||||
, pkg-config
|
||||
, bash-completion
|
||||
, openssl
|
||||
, curl
|
||||
, libxml2
|
||||
, libxslt
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "lastpass-cli";
|
||||
|
@ -15,7 +26,11 @@ stdenv.mkDerivation rec {
|
|||
nativeBuildInputs = [ asciidoc cmake docbook_xsl pkg-config ];
|
||||
|
||||
buildInputs = [
|
||||
bash-completion curl openssl libxml2 libxslt
|
||||
bash-completion
|
||||
curl
|
||||
openssl
|
||||
libxml2
|
||||
libxslt
|
||||
];
|
||||
|
||||
installTargets = [ "install" "install-doc" ];
|
||||
|
@ -23,13 +38,14 @@ stdenv.mkDerivation rec {
|
|||
postInstall = ''
|
||||
install -Dm644 -T ../contrib/lpass_zsh_completion $out/share/zsh/site-functions/_lpass
|
||||
install -Dm644 -T ../contrib/completions-lpass.fish $out/share/fish/vendor_completions.d/lpass.fish
|
||||
install -Dm755 -T ../contrib/examples/git-credential-lastpass $out/bin/git-credential-lastpass
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Stores, retrieves, generates, and synchronizes passwords securely";
|
||||
homepage = "https://github.com/lastpass/lastpass-cli";
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.unix;
|
||||
homepage = "https://github.com/lastpass/lastpass-cli";
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ cstrahan ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue