tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
keepass-keepasshttp: 1.8.4.1 -> 1.8.4.2
Stefan Siegl
8 years ago
11bbd170
7c6b42a2
+6
-3
1 changed file
expand all
collapse all
unified
split
pkgs
applications
misc
keepass-plugins
keepasshttp
default.nix
+6
-3
pkgs/applications/misc/keepass-plugins/keepasshttp/default.nix
···
1
1
{ stdenv, buildEnv, fetchFromGitHub, mono }:
2
2
3
3
let
4
4
-
version = "1.8.4.1";
4
4
+
version = "1.8.4.2";
5
5
drv = stdenv.mkDerivation {
6
6
name = "keepasshttp-${version}";
7
7
src = fetchFromGitHub {
8
8
owner = "pfn";
9
9
repo = "keepasshttp";
10
10
-
rev = "${version}";
11
11
-
sha256 = "1074yv0pmzdwfwkx9fh7n2igdqwsyxypv55khkyng6synbv2p2fd";
10
10
+
#rev = "${version}";
11
11
+
# for 1.8.4.2 the tag is at the wrong commit (they fixed stuff
12
12
+
# afterwards and didn't move the tag), hence reference by commitid
13
13
+
rev = "c2c4eb5388a02169400cba7a67be325caabdcc37";
14
14
+
sha256 = "0bkzxggbqx7sql3sp46bqham6r457in0vrgh3ai3lw2jrw79pwmh";
12
15
};
13
16
14
17
meta = {