monit: remove libSystem hack

+1 -4
+1 -4
pkgs/tools/system/monit/default.nix
··· 24 24 nativeBuildInputs = [ bison flex ] ++ 25 25 lib.optionals stdenv.hostPlatform.isDarwin [ 26 26 darwin.apple_sdk.frameworks.DiskArbitration 27 + darwin.apple_sdk.frameworks.System 27 28 ]; 28 29 29 30 buildInputs = [ zlib.dev libxcrypt ] ++ 30 31 lib.optionals useSSL [ openssl ] ++ 31 32 lib.optionals usePAM [ pam ]; 32 - 33 - preConfigure = lib.optionalString stdenv.hostPlatform.isDarwin '' 34 - substituteInPlace configure --replace "-framework System" "-lSystem" 35 - ''; 36 33 37 34 configureFlags = [ 38 35 (lib.withFeature usePAM "pam")