lastpass-cli: 1.0.0 -> 1.1.1

This commit is contained in:
Robin Gloster 2017-02-02 04:02:16 +01:00
parent 6729b9e23b
commit bee26ba6b2
No known key found for this signature in database
GPG Key ID: 5E4C836C632C2882

View File

@ -1,19 +1,21 @@
{ stdenv, lib, fetchFromGitHub, pkgconfig, openssl, curl, libxml2, libxslt, asciidoc, docbook_xsl }: { stdenv, lib, fetchFromGitHub, cmake, pkgconfig
, openssl, curl, libxml2, libxslt, asciidoc, docbook_xsl }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "lastpass-cli-${version}"; name = "lastpass-cli-${version}";
version = "1.0.0"; version = "1.1.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "lastpass"; owner = "lastpass";
repo = "lastpass-cli"; repo = "lastpass-cli";
rev = "v${version}"; rev = "v${version}";
sha256 = "0hidx2qfr52bwjb6as4fbfa34jqh3zwvrcx590vbsji3bq4g7avb"; sha256 = "1slqrv877c1bhivgd2i9cr1lsd72371dpz6a3h6s56l3qbyk28sa";
}; };
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ buildInputs = [
openssl curl libxml2 pkgconfig asciidoc docbook_xsl libxslt openssl curl libxml2 asciidoc docbook_xsl libxslt
]; ];
makeFlags = "PREFIX=$(out)"; makeFlags = "PREFIX=$(out)";