colordiff: support Darwin as a platform

This change just adds darwin to the supported platforms attribute of
the package.
This commit is contained in:
Badi' Abdul-Wahid 2015-08-13 10:11:36 -04:00
parent 3b95ae79cd
commit 978d4be3ab

View file

@ -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 ];
};
}