sstp: 1.0.18 -> unstable-2023-03-25

For ppp 2.5.0 support
This commit is contained in:
Yureka 2023-04-19 10:36:20 +02:00
parent b65e9775fb
commit c6d71ab781

View file

@ -1,12 +1,14 @@
{ lib, stdenv, fetchurl, pkg-config, ppp, libevent, openssl }: { lib, stdenv, fetchFromGitLab, pkg-config, ppp, libevent, openssl, autoreconfHook }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "sstp-client"; pname = "sstp-client";
version = "1.0.18"; version = "unstable-2023-03-25";
src = fetchurl { src = fetchFromGitLab {
url = "mirror://sourceforge/sstp-client/sstp-client/sstp-client-${version}.tar.gz"; owner = "sstp-project";
sha256 = "sha256-2Hn081q36uh0hu3Ei1D5mpr2X162+0QnmTyleLsODcg="; repo = pname;
rev = "3f7835df9ac5e84729903ca536cf65e4a7b04c6c";
hash = "sha256-8VF5thSABqf5SXEDCa+0dyDt7kVrQcs6deWLlYWM8dg=";
}; };
postPatch = '' postPatch = ''
@ -20,7 +22,7 @@ stdenv.mkDerivation rec {
"--with-pppd-plugin-dir=$(out)/lib/pppd" "--with-pppd-plugin-dir=$(out)/lib/pppd"
]; ];
nativeBuildInputs = [ pkg-config ]; nativeBuildInputs = [ pkg-config autoreconfHook ];
buildInputs = [ libevent openssl ppp ]; buildInputs = [ libevent openssl ppp ];