2021-01-17 03:51:22 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, ppp, libevent, openssl }:
|
2015-01-29 23:33:13 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "sstp-client";
|
2020-10-15 23:50:24 +01:00
|
|
|
version = "1.0.13";
|
2015-01-29 23:33:13 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-10-15 23:50:24 +01:00
|
|
|
url = "mirror://sourceforge/sstp-client/sstp-client/sstp-client-${version}.tar.gz";
|
|
|
|
sha256 = "06rjyncmgdy212xf9l9z6mfh4gdmgk7l4y841gb8lpbrl3y5h4ln";
|
2015-01-29 23:33:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
patchPhase =
|
|
|
|
''
|
|
|
|
sed 's,/usr/sbin/pppd,${ppp}/sbin/pppd,' -i src/sstp-pppd.c
|
|
|
|
sed "s,sstp-pppd-plugin.so,$out/lib/pppd/sstp-pppd-plugin.so," -i src/sstp-pppd.c
|
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags = [
|
2016-04-16 18:44:32 +01:00
|
|
|
"--with-openssl=${openssl.dev}"
|
2015-01-29 23:33:13 +00:00
|
|
|
"--with-runtime-dir=/run/sstpc"
|
|
|
|
"--with-pppd-plugin-dir=$(out)/lib/pppd"
|
|
|
|
];
|
|
|
|
|
2021-01-17 03:51:22 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2015-01-29 23:33:13 +00:00
|
|
|
buildInputs = [ libevent openssl ppp ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "SSTP client for Linux";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://sstp-client.sourceforge.net/";
|
2021-01-15 09:19:50 +00:00
|
|
|
platforms = lib.platforms.linux;
|
|
|
|
maintainers = [ lib.maintainers.ktosiek ];
|
|
|
|
license = lib.licenses.gpl2;
|
2015-01-29 23:33:13 +00:00
|
|
|
};
|
|
|
|
}
|