Skip to content

Commit ab63eaf

Browse files
committed
rubyPackages.gtk3: fix build add missing dependencies
1 parent 4d1a646 commit ab63eaf

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

pkgs/development/ruby-modules/gem-config/default.nix

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@
125125
libsysprof-capture,
126126
imlib2,
127127
autoSignDarwinBinariesHook,
128+
systemd,
128129
}@args:
129130

130131
let
@@ -483,6 +484,11 @@ in
483484
glib
484485
libsysprof-capture
485486
pcre2
487+
]
488+
++ lib.optionals stdenv.hostPlatform.isLinux [
489+
util-linux
490+
libselinux
491+
libsepol
486492
];
487493
};
488494

@@ -491,12 +497,13 @@ in
491497
binutils
492498
pkg-config
493499
]
494-
++ lib.optionals stdenv.hostPlatform.isLinux [
500+
++ lib.optionals stdenv.hostPlatform.isDarwin [ DarwinTools ];
501+
buildInputs = lib.optionals stdenv.hostPlatform.isLinux [
495502
util-linux
496503
libselinux
497504
libsepol
498-
]
499-
++ lib.optionals stdenv.hostPlatform.isDarwin [ DarwinTools ];
505+
systemd
506+
];
500507
propagatedBuildInputs = [
501508
atk
502509
gdk-pixbuf

0 commit comments

Comments
 (0)