Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions pkgs/development/ruby-modules/gem-config/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@
libsysprof-capture,
imlib2,
autoSignDarwinBinariesHook,
systemd,
}@args:

let
Expand Down Expand Up @@ -483,6 +484,11 @@ in
glib
libsysprof-capture
pcre2
]
++ lib.optionals stdenv.hostPlatform.isLinux [
util-linux
libselinux
libsepol
];
};

Expand All @@ -491,12 +497,13 @@ in
binutils
pkg-config
]
++ lib.optionals stdenv.hostPlatform.isLinux [
++ lib.optionals stdenv.hostPlatform.isDarwin [ DarwinTools ];
buildInputs = lib.optionals stdenv.hostPlatform.isLinux [
util-linux
libselinux
libsepol
]
++ lib.optionals stdenv.hostPlatform.isDarwin [ DarwinTools ];
systemd
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why are these libraries in nativeBuildInputs?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

moved to buildInputs, pkg-config was looking for libsystemd.pc

];
propagatedBuildInputs = [
atk
gdk-pixbuf
Expand Down
Loading