mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
vpn-slice: init at 0.14
Python tool for convenient configuration of a split tunnel VPN Signed-off-by: Jack Baldry <jack.baldry@grafana.com>
This commit is contained in:
parent
d2e6750cff
commit
62b812fbc0
25
pkgs/tools/networking/vpn-slice/default.nix
Normal file
25
pkgs/tools/networking/vpn-slice/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ lib, buildPythonApplication, python3Packages, fetchFromGitHub }:
|
||||
|
||||
buildPythonApplication rec {
|
||||
pname = "vpn-slice";
|
||||
version = "0.14";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "dlenski";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1z2mdl3arzl95zrj4ir57f762gcimmmq5nk91j679cshxz4snxyr";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [ setproctitle dnspython ];
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/dlenski/vpn-slice";
|
||||
description =
|
||||
"vpnc-script replacement for easy and secure split-tunnel VPN setup";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ jdbaldry ];
|
||||
};
|
||||
}
|
@ -7293,6 +7293,8 @@ in
|
||||
|
||||
vpnc = callPackage ../tools/networking/vpnc { };
|
||||
|
||||
vpn-slice = python3Packages.callPackage ../tools/networking/vpn-slice { };
|
||||
|
||||
vp = callPackage ../applications/misc/vp {
|
||||
# Enable next line for console graphics. Note that
|
||||
# it requires `sixel` enabled terminals such as mlterm
|
||||
|
Loading…
Reference in New Issue
Block a user