keepass-keepasshttp: 1.8.4.1 -> 1.8.4.2

This commit is contained in:
Stefan Siegl 2017-07-18 21:10:36 +02:00
parent 7c6b42a28c
commit 11bbd17015
No known key found for this signature in database
GPG key ID: 51575950154839CD

View file

@ -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 = {