1
0

buuld ppp with path to /run

This commit is contained in:
Daniel Barlow 2024-10-16 18:57:26 +01:00
parent 9e3f48768e
commit 888688ce28

View File

@ -3,12 +3,10 @@
stdenv, stdenv,
autoreconfHook, autoreconfHook,
substituteAll, substituteAll,
# , openssl
}: stdenv.mkDerivation { }: stdenv.mkDerivation {
pname = "ppp"; pname = "ppp";
version = "2.5.0"; version = "2.5.0";
nativeBuildInputs = [ autoreconfHook ]; nativeBuildInputs = [ autoreconfHook ];
# buildInputs= [ openssl ];
src = fetchFromGitHub { src = fetchFromGitHub {
repo = "ppp"; repo = "ppp";
@ -22,6 +20,7 @@
"--disable-peap" "--disable-peap"
"--disable-openssl-engine" "--disable-openssl-engine"
"--without-openssl" "--without-openssl"
"--with-runtime-dir=/run/"
]; ];
postPatch = '' postPatch = ''