mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
sstp: 1.0.18 -> unstable-2023-03-25
For ppp 2.5.0 support
This commit is contained in:
parent
b65e9775fb
commit
c6d71ab781
@ -1,12 +1,14 @@
|
||||
{ lib, stdenv, fetchurl, pkg-config, ppp, libevent, openssl }:
|
||||
{ lib, stdenv, fetchFromGitLab, pkg-config, ppp, libevent, openssl, autoreconfHook }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "sstp-client";
|
||||
version = "1.0.18";
|
||||
version = "unstable-2023-03-25";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/sstp-client/sstp-client/sstp-client-${version}.tar.gz";
|
||||
sha256 = "sha256-2Hn081q36uh0hu3Ei1D5mpr2X162+0QnmTyleLsODcg=";
|
||||
src = fetchFromGitLab {
|
||||
owner = "sstp-project";
|
||||
repo = pname;
|
||||
rev = "3f7835df9ac5e84729903ca536cf65e4a7b04c6c";
|
||||
hash = "sha256-8VF5thSABqf5SXEDCa+0dyDt7kVrQcs6deWLlYWM8dg=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
@ -20,7 +22,7 @@ stdenv.mkDerivation rec {
|
||||
"--with-pppd-plugin-dir=$(out)/lib/pppd"
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
||||
|
||||
buildInputs = [ libevent openssl ppp ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user