summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2018-08-10 17:50:28 +0100
committerGitHub <noreply@github.com>2018-08-10 17:50:28 +0100
commit20378cbf1c51c16eac259f8f1fd881814fdff9a3 (patch)
tree5a5261eefda7d1551a19497b7e636c2492a4bb34 /pkgs/applications
parentfca6cdc3625f2d5c69cc84a01012c03f9bf53b21 (diff)
parent87215c4ad9bd947bd21db6841e9c6fc3770c4ded (diff)
downloadnixlib-20378cbf1c51c16eac259f8f1fd881814fdff9a3.tar
nixlib-20378cbf1c51c16eac259f8f1fd881814fdff9a3.tar.gz
nixlib-20378cbf1c51c16eac259f8f1fd881814fdff9a3.tar.bz2
nixlib-20378cbf1c51c16eac259f8f1fd881814fdff9a3.tar.lz
nixlib-20378cbf1c51c16eac259f8f1fd881814fdff9a3.tar.xz
nixlib-20378cbf1c51c16eac259f8f1fd881814fdff9a3.tar.zst
nixlib-20378cbf1c51c16eac259f8f1fd881814fdff9a3.zip
Merge pull request #44855 from ljli/keeagent-update
keepass-keeagent: 0.8.1 -> 0.10.1
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/misc/keepass-plugins/keeagent/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/misc/keepass-plugins/keeagent/default.nix b/pkgs/applications/misc/keepass-plugins/keeagent/default.nix
index cd83d2a44e1d..80bf5deceb16 100644
--- a/pkgs/applications/misc/keepass-plugins/keeagent/default.nix
+++ b/pkgs/applications/misc/keepass-plugins/keeagent/default.nix
@@ -1,19 +1,19 @@
 { stdenv, buildEnv, fetchzip, mono }:
 
 let
-  version = "0.8.1";
+  version = "0.10.1";
   drv = stdenv.mkDerivation {
     name = "keeagent-${version}";
 
     src = fetchzip {
-      url = http://lechnology.com/wp-content/uploads/2016/07/KeeAgent_v0.8.1.zip;
-      sha256 = "16x1qrnzg0xkvi7w29wj3z0ldmql2vcbwxksbsmnidzmygwg98hk";
+      url = "https://lechnology.com/wp-content/uploads/2018/04/KeeAgent_v0.10.1.zip";
+      sha256 = "0j7az6l9wcr8z66mfplkxwydd4bgz2p2vd69xncf0nxlfb0lshh7";
       stripRoot = false;
     };
 
     meta = {
       description = "KeePass plugin to allow other programs to access SSH keys stored in a KeePass database for authentication";
-      homepage    = http://lechnology.com/software/keeagent;
+      homepage    = "http://lechnology.com/software/keeagent";
       platforms   = with stdenv.lib.platforms; linux;
       license     = stdenv.lib.licenses.gpl2;
       maintainers = [ ];