tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
logmein-hamachi: 2.1.0.139 -> 2.1.0.165
Nikolay Amiantov
9 years ago
bd8217a2
0f59901b
+6
-5
1 changed file
expand all
collapse all
unified
split
pkgs
tools
networking
logmein-hamachi
default.nix
+6
-5
pkgs/tools/networking/logmein-hamachi/default.nix
···
10
10
else if stdenv.system == "i686-linux" then "x86"
11
11
else abort "Unsupported architecture";
12
12
sha256 =
13
13
-
if stdenv.system == "x86_64-linux" then "1j9sba5prpihlmxr98ss3vls2qjfc6hypzlakr1k97z0a8433nif"
14
14
-
else if stdenv.system == "i686-linux" then "100x6gib2np72wrvcn1yhdyn4fplf5x8xm4x0g77izyfdb3yjg8h"
13
13
+
if stdenv.system == "x86_64-linux" then "0l8y8z8fqvxrypx3dp83mm3qr9shgpcn5h7x2k2z13gp4aq0yw6g"
14
14
+
else if stdenv.system == "i686-linux" then "00nl442k4pij9fm8inlk4qrcvbnz55fbwf3sm3dgbzvd5jcgsa0f"
15
15
else abort "Unsupported architecture";
16
16
libraries = stdenv.lib.makeLibraryPath [ stdenv.cc.cc ];
17
17
18
18
in stdenv.mkDerivation rec {
19
19
-
name = "logmein-hamachi-2.1.0.139";
19
19
+
name = "logmein-hamachi-${version}";
20
20
+
version = "2.1.0.165";
20
21
21
22
src = fetchurl {
22
22
-
url = "https://secure.logmein.com/labs/${name}-${arch}.tgz";
23
23
+
url = "https://www.vpn.net/installers/${name}-${arch}.tgz";
23
24
inherit sha256;
24
25
};
25
26
···
37
38
38
39
meta = with stdenv.lib; {
39
40
description = "A hosted VPN service that lets you securely extend LAN-like networks to distributed teams";
40
40
-
homepage = https://secure.logmein.com/products/hamachi/;
41
41
+
homepage = "https://secure.logmein.com/products/hamachi/";
41
42
license = licenses.unfreeRedistributable;
42
43
maintainers = with maintainers; [ abbradar ];
43
44
platforms = platforms.linux;