* Alternative VPN Clients
@ 2019-04-24 4:01 Dexter Morgan
2019-04-24 13:51 ` Joshua Branson
` (2 more replies)
0 siblings, 3 replies; 9+ messages in thread
From: Dexter Morgan @ 2019-04-24 4:01 UTC (permalink / raw)
To: guix-devel
[-- Attachment #1: Type: text/html, Size: 765 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Alternative VPN Clients
@ 2019-04-24 6:26 Dexter Morgan
0 siblings, 0 replies; 9+ messages in thread
From: Dexter Morgan @ 2019-04-24 6:26 UTC (permalink / raw)
To: help-guix
Hi All,
My friend introduced me to GNU/Linux and installed GuixSD on my laptop.
I am just getting started on Bash. I find that there is absence of VPN
clients as an alternative to OpenVPN. Can some one please package the
following alternative VPN clients:
1) Bitmask: [1]https://bitmask.net/en
2) Netsplice: [2]https://www.ipredator.se/netsplice
They will also be very useful to other users. :)
Thank you.
References
1. https://deref-mail.com/mail/client/4IulojNgmZ8/dereferrer/?redirectUrl=https%3A%2F%2Fbitmask.net%2Fen
2. https://deref-mail.com/mail/client/4DVVUHMooXk/dereferrer/?redirectUrl=https%3A%2F%2Fwww.ipredator.se%2Fnetsplice
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Alternative VPN Clients
[not found] <trinity-60316b2e-9956-48cf-9b6d-c18fce772513-1556087170415@3c-app-mailcom-lxa05>
@ 2019-04-24 11:58 ` swedebugia
0 siblings, 0 replies; 9+ messages in thread
From: swedebugia @ 2019-04-24 11:58 UTC (permalink / raw)
To: help-guix
[-- Attachment #1: Type: text/plain, Size: 1043 bytes --]
On 2019-04-24 08:26, Dexter Morgan wrote:
> Hi All,
>
> My friend introduced me to GNU/Linux and installed GuixSD on my laptop.
> I am just getting started on Bash. I find that there is absence of VPN
> clients as an alternative to OpenVPN. Can some one please package the
> following alternative VPN clients:
>
> 1) Bitmask: [1]https://bitmask.net/en
I tried packaging this a month or two ago but could not get it to work.
Then I realised it is written in py2 and more or less abandoned. A new
client is being written in Go instead. See
https://0xacab.org/leap/bitmask-vpn
>
> 2) Netsplice: [2]https://www.ipredator.se/netsplice
>
> They will also be very useful to other users. :)
>
> Thank you.
>
> References
>
> 1. https://deref-mail.com/mail/client/4IulojNgmZ8/dereferrer/?redirectUrl=https%3A%2F%2Fbitmask.net%2Fen
> 2. https://deref-mail.com/mail/client/4DVVUHMooXk/dereferrer/?redirectUrl=https%3A%2F%2Fwww.ipredator.se%2Fnetsplice
>
--
Cheers Swedebugia
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Alternative VPN Clients
2019-04-24 4:01 Alternative VPN Clients Dexter Morgan
@ 2019-04-24 13:51 ` Joshua Branson
2019-04-24 17:26 ` Danny Milosavljevic
2019-04-25 18:37 ` Leo Famulari
2 siblings, 0 replies; 9+ messages in thread
From: Joshua Branson @ 2019-04-24 13:51 UTC (permalink / raw)
To: guix-devel
"Dexter Morgan" <dextermorgan@asia.com> writes:
> Hi All,
>
> My friend introduced me to GNU/Linux and installed GuixSD on my laptop. I am just
> getting started on Bash. I find that there is absence of VPN clients as an alternative to
> OpenVPN. Can some one please package the following alternative VPN clients:
Thanks for mentioning this.
>
> 1) Bitmask: https://bitmask.net/en
>
> 2) Netsplice: https://www.ipredator.se/netsplice
>
> They will also be very useful to other users. :)
Can you try packaging them? Packaging programs can be a little easier
than you think. :) Why don't you give it a try, and if you run into
any issues, you could ask for help?
>
> Thank you.
>
--
Joshua Branson
Sent from Emacs and Gnus
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Alternative VPN Clients
2019-04-24 4:01 Alternative VPN Clients Dexter Morgan
2019-04-24 13:51 ` Joshua Branson
@ 2019-04-24 17:26 ` Danny Milosavljevic
2019-04-28 9:16 ` Dexter Morgan
2019-04-25 18:37 ` Leo Famulari
2 siblings, 1 reply; 9+ messages in thread
From: Danny Milosavljevic @ 2019-04-24 17:26 UTC (permalink / raw)
To: Dexter Morgan; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 1407 bytes --]
Hi,
if you want to package bitmask, you can try:
$ guix import pypi leap.bitmask
This will print a package definition.
You can put it into a file "bitmask.scm" inside the directory $GUIX_PACKAGE_PATH (you may have to set that environment variable first) with the following header:
(define-module (bitmask)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix utils)
#:use-module (guix build-system python)
#:use-module (guix gexp)
#:use-module (gnu packages)
#:use-module (gnu packages base)
#:use-module (gnu packages cross-base)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages python)
#:use-module (gnu packages python-xyz))
(define-public python-leap.bitmask
Then you can try it out with
$ guix build --rounds=2 -K python-leap.bitmask
If there are more packages missing, you can generate them all via:
$ guix import pypi -r leap.bitmask
and also put them in the file, adding "(define-public ..." before each block.
For netsplice, it's very similar--but for some reason their package is not
available on PyPI, so you'd have to write the package definition yourself
(just copy the python-leap.bitmask one and modify it - especially the name,
URL and expected checksum - until it works).
If there are any problems please ask on this list.
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Alternative VPN Clients
2019-04-24 4:01 Alternative VPN Clients Dexter Morgan
2019-04-24 13:51 ` Joshua Branson
2019-04-24 17:26 ` Danny Milosavljevic
@ 2019-04-25 18:37 ` Leo Famulari
2019-04-28 9:17 ` Dexter Morgan
2 siblings, 1 reply; 9+ messages in thread
From: Leo Famulari @ 2019-04-25 18:37 UTC (permalink / raw)
To: Dexter Morgan; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 428 bytes --]
On Wed, Apr 24, 2019 at 06:01:49AM +0200, Dexter Morgan wrote:
> My friend introduced me to GNU/Linux and installed GuixSD on my laptop. I am
> just getting started on Bash. I find that there is absence of VPN clients as an
> alternative to OpenVPN. Can some one please package the following alternative
> VPN clients:
Just FYI, we have a WireGuard package that works well. You may find it
superior to traditional VPN systems.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Alternative VPN Clients
2019-04-24 17:26 ` Danny Milosavljevic
@ 2019-04-28 9:16 ` Dexter Morgan
0 siblings, 0 replies; 9+ messages in thread
From: Dexter Morgan @ 2019-04-28 9:16 UTC (permalink / raw)
To: Danny Milosavljevic; +Cc: guix-devel
[-- Attachment #1: Type: text/html, Size: 2439 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Alternative VPN Clients
2019-04-25 18:37 ` Leo Famulari
@ 2019-04-28 9:17 ` Dexter Morgan
2019-04-28 10:10 ` swedebugia
0 siblings, 1 reply; 9+ messages in thread
From: Dexter Morgan @ 2019-04-28 9:17 UTC (permalink / raw)
To: Leo Famulari; +Cc: guix-devel
[-- Attachment #1: Type: text/html, Size: 1226 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Alternative VPN Clients
2019-04-28 9:17 ` Dexter Morgan
@ 2019-04-28 10:10 ` swedebugia
0 siblings, 0 replies; 9+ messages in thread
From: swedebugia @ 2019-04-28 10:10 UTC (permalink / raw)
To: guix-devel
[-- Attachment #1.1: Type: text/plain, Size: 961 bytes --]
On 2019-04-28 11:17, Dexter Morgan wrote:
> How can I use it with GNOME NetworkManager ?
I think thats not supported yet.
>
> *Sent:* Thursday, April 25, 2019 at 2:37 PM
> *From:* "Leo Famulari" <leo@famulari.name>
> *To:* "Dexter Morgan" <dextermorgan@asia.com>
> *Cc:* guix-devel@gnu.org
> *Subject:* Re: Alternative VPN Clients
> On Wed, Apr 24, 2019 at 06:01:49AM +0200, Dexter Morgan wrote:
>> My friend introduced me to GNU/Linux and installed GuixSD on my
> laptop. I am
>> just getting started on Bash. I find that there is absence of VPN
> clients as an
>> alternative to OpenVPN. Can some one please package the following
> alternative
>> VPN clients:
>
> Just FYI, we have a WireGuard package that works well. You may find it
> superior to traditional VPN systems.
This seems to require support from the VPN provider and will not work
with traditional (open)VPN-providers e.g. Riseup.
--
Cheers Swedebugia
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2019-04-28 10:08 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-24 4:01 Alternative VPN Clients Dexter Morgan
2019-04-24 13:51 ` Joshua Branson
2019-04-24 17:26 ` Danny Milosavljevic
2019-04-28 9:16 ` Dexter Morgan
2019-04-25 18:37 ` Leo Famulari
2019-04-28 9:17 ` Dexter Morgan
2019-04-28 10:10 ` swedebugia
-- strict thread matches above, loose matches on Subject: below --
2019-04-24 6:26 Dexter Morgan
[not found] <trinity-60316b2e-9956-48cf-9b6d-c18fce772513-1556087170415@3c-app-mailcom-lxa05>
2019-04-24 11:58 ` swedebugia
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.