summary refs log tree commit diff
path: root/pkgs/applications/misc/1password
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2018-08-01 08:19:07 -0500
committerxeji <36407913+xeji@users.noreply.github.com>2018-08-01 15:19:07 +0200
commit1b6190e0050f3af468e6c90f3c475ad6ec4bf752 (patch)
treee900dfbb245cb295b459f0451d297c82caa4b5d6 /pkgs/applications/misc/1password
parent4cc3a18fcd6a88491d350ae9b54b8d163cd69643 (diff)
downloadnixpkgs-1b6190e0050f3af468e6c90f3c475ad6ec4bf752.tar
nixpkgs-1b6190e0050f3af468e6c90f3c475ad6ec4bf752.tar.gz
nixpkgs-1b6190e0050f3af468e6c90f3c475ad6ec4bf752.tar.bz2
nixpkgs-1b6190e0050f3af468e6c90f3c475ad6ec4bf752.tar.lz
nixpkgs-1b6190e0050f3af468e6c90f3c475ad6ec4bf752.tar.xz
nixpkgs-1b6190e0050f3af468e6c90f3c475ad6ec4bf752.tar.zst
nixpkgs-1b6190e0050f3af468e6c90f3c475ad6ec4bf752.zip
1password: 0.4.1 -> 0.5.1 (#43981)
Diffstat (limited to 'pkgs/applications/misc/1password')
-rw-r--r--pkgs/applications/misc/1password/default.nix22
1 files changed, 10 insertions, 12 deletions
diff --git a/pkgs/applications/misc/1password/default.nix b/pkgs/applications/misc/1password/default.nix
index d5818614b9e..a44ce2d8b4c 100644
--- a/pkgs/applications/misc/1password/default.nix
+++ b/pkgs/applications/misc/1password/default.nix
@@ -2,24 +2,24 @@
 
 stdenv.mkDerivation rec {
   name = "1password-${version}";
-  version = "0.4.1";
+  version = "0.5.1";
   src =
     if stdenv.system == "i686-linux" then
       fetchzip {
         url = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_linux_386_v${version}.zip";
-        sha256 = "1yzzh1f6hx7vwdgzp0znsjarjiw4xqmmrkc5xwywgjpg81qqpl8c";
+        sha256 = "08kzjilxpkvlwqjyxnic1n6xiy6gkndijwxdksm59k7c56mdawsz";
         stripRoot = false;
       }
     else if stdenv.system == "x86_64-linux" then
       fetchzip {
         url = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_linux_amd64_v${version}.zip";
-        sha256 = "0dgj1zqmpdbnsz2v2j7nqm232cdgyp9wagc089dxi4hbzkmfcvzx";
+        sha256 = "1bsbzaqws0z991r6rkjrxay74fj4g5ld4d748ygr0950zwi1m3h7";
         stripRoot = false;
       }
     else if stdenv.system == "x86_64-darwin" then
       fetchzip {
         url = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_darwin_amd64_v${version}.zip";
-        sha256 = "116bvyfg38npdhlzaxan5y47cbw7jvj94q5w6v71kxsjzxk9l44a";
+        sha256 = "1dhr8m9icip27v802gxl1vhl9rf0jq5awirdm72lqmlypj86df0g";
         stripRoot = false;
       }
     else throw "Architecture not supported";
@@ -34,13 +34,11 @@ stdenv.mkDerivation rec {
   '';
 
   meta = with stdenv.lib; {
-    description = "1Password command-line tool";
-    homepage    = [
-      "https://blog.agilebits.com/2017/09/06/announcing-the-1password-command-line-tool-public-beta/"
-      "https://app-updates.agilebits.com/product_history/CLI"
-    ];
-    maintainers = with maintainers; [ joelburget ];
-    license     = licenses.unfree;
-    platforms   = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
+    description  = "1Password command-line tool";
+    homepage     = https://support.1password.com/command-line/;
+    downloadPage = https://app-updates.agilebits.com/product_history/CLI;
+    maintainers  = with maintainers; [ joelburget ];
+    license      = licenses.unfree;
+    platforms    = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
   };
 }