about summary refs log tree commit diff
path: root/pkgs/tools/security/lastpass-cli
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2019-03-22 13:49:02 -0500
committerWill Dietz <w@wdtz.org>2019-03-22 14:10:46 -0500
commitc87bca6b7c85db6adafaf81807c71047a584e172 (patch)
tree58c43af2f71392d2c3437d1248625aff996cb3ee /pkgs/tools/security/lastpass-cli
parentea34ad0e4307af7acda9078ed5795bec45f7cb84 (diff)
lastpass-cli: 1.3.1 -> 1.3.2
https://github.com/lastpass/lastpass-cli/releases/tag/v1.3.2
Diffstat (limited to 'pkgs/tools/security/lastpass-cli')
-rw-r--r--pkgs/tools/security/lastpass-cli/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/tools/security/lastpass-cli/default.nix b/pkgs/tools/security/lastpass-cli/default.nix
index 4db350684bef2..51a7d8daa54a3 100644
--- a/pkgs/tools/security/lastpass-cli/default.nix
+++ b/pkgs/tools/security/lastpass-cli/default.nix
@@ -2,15 +2,14 @@
 , bash-completion, openssl, curl, libxml2, libxslt }:
 
 stdenv.mkDerivation rec {
-  name = "lastpass-cli-${version}";
-
-  version = "1.3.1";
+  pname = "lastpass-cli";
+  version = "1.3.2";
 
   src = fetchFromGitHub {
     owner = "lastpass";
-    repo = "lastpass-cli";
+    repo = pname;
     rev = "v${version}";
-    sha256 = "11drzmfdvb8ydw1dxaz9zz8rk0jjqmfv076vydz05qqvgx59s38h";
+    sha256 = "12qjqvqzi3pq7hrdpq59bcxqy6yj1mhx145g9rky1jm2ipzpfayq";
   };
 
   nativeBuildInputs = [ asciidoc cmake docbook_xsl pkgconfig ];