openfortivpn: Added expression
This commit is contained in:
parent
57f2d329ac
commit
1e5ce3f024
37
pkgs/tools/networking/openfortivpn/default.nix
Normal file
37
pkgs/tools/networking/openfortivpn/default.nix
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, automake, autoconf, openssl, ppp }:
|
||||||
|
|
||||||
|
with stdenv.lib;
|
||||||
|
|
||||||
|
let repo = "openfortivpn";
|
||||||
|
version = "1.0.1";
|
||||||
|
|
||||||
|
in stdenv.mkDerivation {
|
||||||
|
name = "${repo}-${version}";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "adrienverge";
|
||||||
|
inherit repo;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0kwl8hv3nydd34xp1489jpjdj4bmknfl9xrgynij0vf5qx29xv7m";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ openssl automake autoconf ppp ];
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
aclocal
|
||||||
|
autoconf
|
||||||
|
automake --add-missing
|
||||||
|
|
||||||
|
substituteInPlace src/tunnel.c --replace "/usr/sbin/pppd" "${ppp}/bin/pppd"
|
||||||
|
'';
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Client for PPP+SSL VPN tunnel services";
|
||||||
|
homepage = https://github.com/adrienverge/openfortivpn;
|
||||||
|
license = stdenv.lib.licenses.gpl3;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.madjar ];
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -2051,6 +2051,8 @@ let
|
|||||||
|
|
||||||
obexd = callPackage ../tools/bluetooth/obexd { };
|
obexd = callPackage ../tools/bluetooth/obexd { };
|
||||||
|
|
||||||
|
openfortivpn = callPackage ../tools/networking/openfortivpn { };
|
||||||
|
|
||||||
obexfs = callPackage ../tools/bluetooth/obexfs { };
|
obexfs = callPackage ../tools/bluetooth/obexfs { };
|
||||||
|
|
||||||
obexftp = callPackage ../tools/bluetooth/obexftp { };
|
obexftp = callPackage ../tools/bluetooth/obexftp { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user