From 978d4be3ab351f408e48c9519464bb5c730ca39d Mon Sep 17 00:00:00 2001 From: Badi' Abdul-Wahid Date: Thu, 13 Aug 2015 10:11:36 -0400 Subject: [PATCH] colordiff: support Darwin as a platform This change just adds darwin to the supported platforms attribute of the package. --- pkgs/tools/text/colordiff/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/text/colordiff/default.nix b/pkgs/tools/text/colordiff/default.nix index 18eae754f4f..89bbd862dad 100644 --- a/pkgs/tools/text/colordiff/default.nix +++ b/pkgs/tools/text/colordiff/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation { description = "Wrapper for 'diff' that produces the same output but with pretty 'syntax' highlighting"; homepage = http://www.colordiff.org/; license = licenses.gpl3; - platforms = platforms.linux; + platforms = platforms.linux ++ platforms.darwin; maintainer = with maintainers; [ nckx ]; }; }