Skip to content

Commit

Permalink
ppp: add systemd sd-notify support
Browse files Browse the repository at this point in the history
  • Loading branch information
stv0g committed Dec 20, 2024
1 parent e9d4b94 commit e0048b3
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions pkgs/by-name/pp/ppp/package.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
{
lib,
stdenv,
autoreconfHook,
bash,
fetchFromGitHub,
lib,
libpcap,
libxcrypt,
pkg-config,
autoreconfHook,
openssl,
bash,
nixosTests,
openssl,
pkg-config,
stdenv,
systemdMinimal,
}:

stdenv.mkDerivation rec {
Expand All @@ -26,6 +27,7 @@ stdenv.mkDerivation rec {
"--localstatedir=/var"
"--sysconfdir=/etc"
"--with-openssl=${openssl.dev}"
"--enable-systemd"
];

nativeBuildInputs = [
Expand All @@ -34,10 +36,11 @@ stdenv.mkDerivation rec {
];

buildInputs = [
bash
libpcap
libxcrypt
openssl
bash
systemdMinimal
];

postPatch = ''
Expand Down

0 comments on commit e0048b3

Please sign in to comment.