From 888688ce2889f50ed46271c334a76e30d672ba25 Mon Sep 17 00:00:00 2001 From: Daniel Barlow Date: Wed, 16 Oct 2024 18:57:26 +0100 Subject: [PATCH] buuld ppp with path to /run --- pkgs/ppp/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/ppp/default.nix b/pkgs/ppp/default.nix index 7a93dff..363723b 100644 --- a/pkgs/ppp/default.nix +++ b/pkgs/ppp/default.nix @@ -3,12 +3,10 @@ stdenv, autoreconfHook, substituteAll, -# , openssl }: stdenv.mkDerivation { pname = "ppp"; version = "2.5.0"; nativeBuildInputs = [ autoreconfHook ]; -# buildInputs= [ openssl ]; src = fetchFromGitHub { repo = "ppp"; @@ -22,6 +20,7 @@ "--disable-peap" "--disable-openssl-engine" "--without-openssl" + "--with-runtime-dir=/run/" ]; postPatch = ''