summary refs log tree commit diff
path: root/pkgs/applications/misc/keepass-plugins
diff options
context:
space:
mode:
authorStefan Siegl <stesie@brokenpipe.de>2017-07-18 21:10:36 +0200
committerStefan Siegl <stesie@brokenpipe.de>2017-07-18 21:46:37 +0200
commit11bbd17015376addc1453de5ef4f0839a22e7941 (patch)
treeeb19f108a853d8ecbdeaa8201aa1dbbad603d047 /pkgs/applications/misc/keepass-plugins
parent7c6b42a28c91a8480fa0aa5b8675080e3b401aa0 (diff)
downloadnixpkgs-11bbd17015376addc1453de5ef4f0839a22e7941.tar
nixpkgs-11bbd17015376addc1453de5ef4f0839a22e7941.tar.gz
nixpkgs-11bbd17015376addc1453de5ef4f0839a22e7941.tar.bz2
nixpkgs-11bbd17015376addc1453de5ef4f0839a22e7941.tar.lz
nixpkgs-11bbd17015376addc1453de5ef4f0839a22e7941.tar.xz
nixpkgs-11bbd17015376addc1453de5ef4f0839a22e7941.tar.zst
nixpkgs-11bbd17015376addc1453de5ef4f0839a22e7941.zip
keepass-keepasshttp: 1.8.4.1 -> 1.8.4.2
Diffstat (limited to 'pkgs/applications/misc/keepass-plugins')
-rw-r--r--pkgs/applications/misc/keepass-plugins/keepasshttp/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/applications/misc/keepass-plugins/keepasshttp/default.nix b/pkgs/applications/misc/keepass-plugins/keepasshttp/default.nix
index 5e43486b075..e64632d529b 100644
--- a/pkgs/applications/misc/keepass-plugins/keepasshttp/default.nix
+++ b/pkgs/applications/misc/keepass-plugins/keepasshttp/default.nix
@@ -1,14 +1,17 @@
 { stdenv, buildEnv, fetchFromGitHub, mono }:
 
 let
-  version = "1.8.4.1";
+  version = "1.8.4.2";
   drv = stdenv.mkDerivation {
     name = "keepasshttp-${version}";
     src = fetchFromGitHub {
       owner = "pfn";
       repo = "keepasshttp";
-      rev = "${version}";
-      sha256 = "1074yv0pmzdwfwkx9fh7n2igdqwsyxypv55khkyng6synbv2p2fd";
+      #rev = "${version}";
+      # for 1.8.4.2 the tag is at the wrong commit (they fixed stuff
+      # afterwards and didn't move the tag), hence reference by commitid
+      rev = "c2c4eb5388a02169400cba7a67be325caabdcc37";
+      sha256 = "0bkzxggbqx7sql3sp46bqham6r457in0vrgh3ai3lw2jrw79pwmh";
     };
 
     meta = {