-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
runit: Add Darwin Compatibility #89330
Conversation
Not much modification is required to build and run runit on MacOS, all that was needed was to follow runit's instructions [0] with some guidance from homebrew's formula. [1] 0: http://smarden.org/runit/install.html 1: https://github.com/Homebrew/homebrew-core/blob/1cf1e61/Formula/runit.rb
I seem to be having an issue testing a sandboxed build. @ggreif would you be able to lend me some advice here? When attempting a sandboxed build, the following is spat out:
I'm not sure if it means I need to add |
Attempting to add diff --git a/pkgs/tools/system/runit/default.nix b/pkgs/tools/system/runit/default.nix
index acca0acf3ef..65abeb25bc3 100644
--- a/pkgs/tools/system/runit/default.nix
+++ b/pkgs/tools/system/runit/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, darwin
+{ stdenv, fetchurl, darwin, CoreFoundation
# Build runit-init as a static binary
, static ? false
@@ -8,6 +8,7 @@ stdenv.mkDerivation rec {
pname = "runit";
version = "2.1.2";
+
src = fetchurl {
url = "http://smarden.org/runit/${pname}-${version}.tar.gz";
sha256 = "065s8w62r6chjjs6m9hapcagy33m75nlnxb69vg0f4ngn061dl3g";
@@ -24,7 +25,7 @@ stdenv.mkDerivation rec {
doCheck = true;
buildInputs = stdenv.lib.optionals static [ stdenv.cc.libc stdenv.cc.libc.static ] ++
- stdenv.lib.optional stdenv.isDarwin darwin.apple_sdk.libs.utmp;
+ stdenv.lib.optionals stdenv.isDarwin [ CoreFoundation darwin.apple_sdk.libs.utmp ];
postPatch = ''
sed -i "s,\(#define RUNIT\) .*,\1 \"$out/bin/runit\"," src/runit.h
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index cfff8addf61..e294db1b5a6 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -26067,7 +26067,9 @@ in
run-scaled = callPackage ../tools/X11/run-scaled { };
- runit = callPackage ../tools/system/runit { };
+ runit = callPackage ../tools/system/runit {
+ inherit (darwin.apple_sdk.frameworks) CoreFoundation;
+ };
refind = callPackage ../tools/bootloaders/refind { };
and the same error is produced
|
I see other packages (screen) calling diff --git a/pkgs/tools/system/runit/default.nix b/pkgs/tools/system/runit/default.nix
index acca0acf3ef..0e7674906d7 100644
--- a/pkgs/tools/system/runit/default.nix
+++ b/pkgs/tools/system/runit/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, darwin
+{ stdenv, fetchurl, darwin, utmp
# Build runit-init as a static binary
, static ? false
@@ -8,6 +8,7 @@ stdenv.mkDerivation rec {
pname = "runit";
version = "2.1.2";
+
src = fetchurl {
url = "http://smarden.org/runit/${pname}-${version}.tar.gz";
sha256 = "065s8w62r6chjjs6m9hapcagy33m75nlnxb69vg0f4ngn061dl3g";
@@ -24,7 +25,7 @@ stdenv.mkDerivation rec {
doCheck = true;
buildInputs = stdenv.lib.optionals static [ stdenv.cc.libc stdenv.cc.libc.static ] ++
- stdenv.lib.optional stdenv.isDarwin darwin.apple_sdk.libs.utmp;
+ stdenv.lib.optional stdenv.isDarwin utmp;
postPatch = ''
sed -i "s,\(#define RUNIT\) .*,\1 \"$out/bin/runit\"," src/runit.h
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index cfff8addf61..4ad68ebed2a 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -26067,7 +26067,9 @@ in
run-scaled = callPackage ../tools/X11/run-scaled { };
- runit = callPackage ../tools/system/runit { };
+ runit = callPackage ../tools/system/runit {
+ inherit (darwin.apple_sdk.libs) utmp;
+ };
refind = callPackage ../tools/bootloaders/refind { };
the same error though 🤔
|
Sorry, I fear this is way out of my knowledge of |
oh no ok, maybe @lilyball, author of the linked issue, has an idea? 🤞 |
@GrahamcOfBorg build runit |
Nix 2.3.5 added |
FWIW prior to Nix 2.3.5 I just had my |
The package builds now, ready to merge? |
Not much modification is required to build and run runit on MacOS, all
that was needed was to follow runit's instructions [0] with some
guidance from homebrew's formula. [1]
0: http://smarden.org/runit/install.html
1: https://github.com/Homebrew/homebrew-core/blob/1cf1e61/Formula/runit.rb
I haven't changed the default service directory, although homebrew does. Should I do this for the sake of Catalina users? If so, is there a mechanism similar to homebrew to alert users to this difference?
Motivation for this change
A project at work uses runit to manage services in its dev environment, and I'd love to nixify it.
Things done
sandbox
innix.conf
on non-NixOS linux)nix-shell -p nixpkgs-review --run "nixpkgs-review wip"
./result/bin/
)nix path-info -S
before and after)