unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Alternative VPN Clients
@ 2019-04-24  4:01 Dexter Morgan
  2019-04-24 13:51 ` Joshua Branson
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ 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] 7+ 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; 7+ 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] 7+ 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; 7+ 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] 7+ 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; 7+ 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] 7+ 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; 7+ 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] 7+ 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; 7+ 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] 7+ messages in thread

* Re: Alternative VPN Clients
  2019-04-28  9:17   ` Dexter Morgan
@ 2019-04-28 10:10     ` swedebugia
  0 siblings, 0 replies; 7+ 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] 7+ messages in thread

end of thread, other threads:[~2019-04-28 10:08 UTC | newest]

Thread overview: 7+ 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

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).