3ff3ec989c
And add an update-script, for automatic updates.
32 lines
770 B
Nix
32 lines
770 B
Nix
{ lib, buildPythonApplication, nix-update-script, python3Packages, fetchFromGitHub }:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "vpn-slice";
|
|
version = "0.15";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dlenski";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-9JnRuJkpcgW1cEgJPiqFDYotNSCl7XcmbHS6D4E13gM=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3Packages; [ setproctitle dnspython ];
|
|
|
|
doCheck = false;
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script {
|
|
attrPath = pname;
|
|
};
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|