From 882e08ced1b29fa0819198bf444922c52b3588c5 Mon Sep 17 00:00:00 2001 From: Matthew Justin Bauer Date: Tue, 8 May 2018 15:37:10 -0500 Subject: [PATCH] unixtools: fixup bad merge This should hopefully fix the eval issue. --- pkgs/top-level/unix-tools.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/unix-tools.nix b/pkgs/top-level/unix-tools.nix index a73f11e69a4a..c42cf8aa0267 100644 --- a/pkgs/top-level/unix-tools.nix +++ b/pkgs/top-level/unix-tools.nix @@ -47,7 +47,7 @@ let eject = { linux = pkgs.utillinux; }; - getconf = singleBinary "getconf" { + getconf = { linux = if hostPlatform.isMusl then pkgs.musl-getconf else lib.getBin stdenv.cc.libc; darwin = pkgs.darwin.system_cmds;