tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
update lastpass-cli to version 0.5.1
John Chee
11 years ago
88b95781
b97435e1
+2
-6
1 changed file
expand all
collapse all
unified
split
pkgs
tools
security
lastpass-cli
default.nix
+2
-6
pkgs/tools/security/lastpass-cli/default.nix
···
3
3
stdenv.mkDerivation rec {
4
4
name = "lastpass-cli-${version}";
5
5
6
6
-
version = "0.4.0";
6
6
+
version = "0.5.1";
7
7
8
8
src = fetchFromGitHub {
9
9
owner = "lastpass";
10
10
repo = "lastpass-cli";
11
11
rev = "v${version}";
12
12
-
sha256 = "1r06lifjc28sm88d6x3xwn76l9fjwjmd1wbmvr9j8rna889q0wl9";
12
12
+
sha256 = "0k2dbfizd6gwd4s8badm50qg2djrh22szd932l1a96mn79q8zb70";
13
13
};
14
14
15
15
buildInputs = [
16
16
openssl curl libxml2 pkgconfig asciidoc docbook_xsl libxslt
17
17
];
18
18
-
19
19
-
prePatch = ''
20
20
-
substituteInPlace version.h --replace "0.3.0" "0.4.0"
21
21
-
'';
22
18
23
19
makeFlags = "PREFIX=$(out)";
24
20