nixpkgs/pkgs/tools/security/lastpass-cli/default.nix

38 lines
1000 B
Nix
Raw Normal View History

2018-01-06 15:42:52 +00:00
{ stdenv, lib, fetchFromGitHub, asciidoc, cmake, docbook_xsl, pkgconfig
, bash-completion, openssl, curl, libxml2, libxslt }:
stdenv.mkDerivation rec {
name = "lastpass-cli-${version}";
version = "1.3.0";
src = fetchFromGitHub {
owner = "lastpass";
repo = "lastpass-cli";
rev = "v${version}";
sha256 = "0k3vnlibv05wnn6qn3qjlcyj2s07di7zkmdnijd6cp1hfk76z2r5";
};
2018-01-06 15:42:52 +00:00
nativeBuildInputs = [ asciidoc cmake docbook_xsl pkgconfig ];
buildInputs = [
2018-01-06 15:42:52 +00:00
bash-completion curl openssl libxml2 libxslt
];
2018-01-06 15:42:52 +00:00
enableParallelBuilding = true;
cmakeFlags = [
"-DBASH_COMPLETION_COMPLETIONSDIR=./share/bash-completion/completions"
];
installTargets = "install install-doc";
meta = with lib; {
description = "Stores, retrieves, generates, and synchronizes passwords securely";
homepage = "https://github.com/lastpass/lastpass-cli";
license = licenses.gpl2Plus;
2018-01-06 15:42:52 +00:00
platforms = platforms.unix;
maintainers = with maintainers; [ cstrahan ];
};
}