diff options
author | Will Dietz <w@wdtz.org> | 2018-06-18T20·50-0500 |
---|---|---|
committer | Will Dietz <w@wdtz.org> | 2018-06-18T20·50-0500 |
commit | 25cb1a63438efca539a85647031d3bb84b3bd14d (patch) | |
tree | 869cf302ae247e1a801a424aa09ada3583b75ba8 /release-common.nix | |
parent | b920b908578d68c7c80f1c1e89c42784693e18d5 (diff) |
release-common: prefer utillinuxMinimal to reduce compile-time deps
Honestly could probably use busybox here instead, but at least with utillinuxMinimal there's no build-time dependency on systemd.
Diffstat (limited to 'release-common.nix')
-rw-r--r-- | release-common.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/release-common.nix b/release-common.nix index 9138c1127843..f98e86a1b444 100644 --- a/release-common.nix +++ b/release-common.nix @@ -57,7 +57,7 @@ rec { git mercurial ] - ++ lib.optionals stdenv.isLinux [libseccomp utillinux] + ++ lib.optionals stdenv.isLinux [libseccomp utillinuxMinimal] ++ lib.optional (stdenv.isLinux || stdenv.isDarwin) libsodium ++ lib.optional (stdenv.isLinux || stdenv.isDarwin) (aws-sdk-cpp.override { |