Skip to content

Commit

Permalink
umockdev: enable strictDeps
Browse files Browse the repository at this point in the history
As pointed out in
#280697 (comment),
umockdev tests shell out to udevadm, and in both cases, systemdMinimal
should be sufficient.

Fixes #280697
  • Loading branch information
flokli committed Jan 24, 2024
1 parent 4a5606d commit 5876256
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions pkgs/development/libraries/umockdev/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
, ninja
, pkg-config
, python3
, systemd
, systemdMinimal
, usbutils
, vala
, which
Expand Down Expand Up @@ -49,7 +49,7 @@ stdenv.mkDerivation (finalAttrs: {

buildInputs = [
glib
systemd
systemdMinimal
libpcap
];

Expand All @@ -59,10 +59,13 @@ stdenv.mkDerivation (finalAttrs: {

nativeCheckInputs = [
python3
which
systemdMinimal
usbutils
which
];

strictDeps = true;

mesonFlags = [
"-Dgtk_doc=true"
];
Expand Down

0 comments on commit 5876256

Please sign in to comment.