From e505e37d9a9950baa69017b66269de161ad56333 Mon Sep 17 00:00:00 2001 From: Daniel Barlow Date: Sat, 30 Dec 2023 22:26:12 +0000 Subject: [PATCH] build util-linux without systemd this didnt work before but it does now, maybe because we upgraded nixpkgs 23.05->23.11 --- overlay.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/overlay.nix b/overlay.nix index f4884c7..42b0a88 100644 --- a/overlay.nix +++ b/overlay.nix @@ -256,13 +256,13 @@ extraPkgs // { # guile = null; # }; - # util-linux = prev.util-linux.override { - # ncursesSupport = false; - # pamSupport = false; - # systemdSupport = false; - # nlsSupport = false; - # translateManpages = false; - # capabilitiesSupport = false; - # }; + util-linux = prev.util-linux.override { + ncursesSupport = false; + pamSupport = false; + systemdSupport = false; + nlsSupport = false; + translateManpages = false; + capabilitiesSupport = false; + }; }