From a820dba46917597d4fe3383b0b10ba60ff80acd6 Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Sat, 3 Mar 2018 01:47:57 +0100 Subject: [PATCH] uutils-coreutils: disable general unix build for now Currently the installation on Darwin fails due to a bug in the installation script: https://github.com/NixOS/nixpkgs/pull/34840#issuecomment-369227222 As I lack knowledge and resources to properly test this package against Darwin I'll disallow Darwin builds for now. --- pkgs/tools/misc/uutils-coreutils/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/misc/uutils-coreutils/default.nix b/pkgs/tools/misc/uutils-coreutils/default.nix index 7f6e4f760b3..411e0324457 100644 --- a/pkgs/tools/misc/uutils-coreutils/default.nix +++ b/pkgs/tools/misc/uutils-coreutils/default.nix @@ -34,6 +34,6 @@ rustPlatform.buildRustPackage { homepage = https://github.com/uutils/coreutils; maintainers = with maintainers; [ ma27 ]; license = licenses.mit; - platforms = platforms.unix; + platforms = platforms.linux; }; }