mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
e700483077
see issue #43716
34 lines
947 B
Nix
34 lines
947 B
Nix
{ stdenv, fetchurl, ppp, libevent, openssl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "sstp-client-${version}";
|
|
version = "1.0.11";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/sstp-client/sstp-client/${version}/sstp-client-${version}.tar.gz";
|
|
sha256 = "087vp3n7nv001fsgbmkjpgl3a2vhbix22cflrqi5bv9h8181p18v";
|
|
};
|
|
|
|
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 = [
|
|
"--with-openssl=${openssl.dev}"
|
|
"--with-runtime-dir=/run/sstpc"
|
|
"--with-pppd-plugin-dir=$(out)/lib/pppd"
|
|
];
|
|
|
|
buildInputs = [ libevent openssl ppp ];
|
|
|
|
meta = {
|
|
description = "SSTP client for Linux";
|
|
homepage = http://sstp-client.sourceforge.net/;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = [ stdenv.lib.maintainers.ktosiek ];
|
|
license = stdenv.lib.licenses.gpl2;
|
|
};
|
|
}
|