Merge pull request #9235 from badi/darwin-colordiff

colordiff: support Darwin as a platform
This commit is contained in:
Tobias Geerinckx-Rice 2015-08-13 19:28:01 +02:00
commit 18597ff658
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ stdenv.mkDerivation {
description = "Wrapper for 'diff' that produces the same output but with pretty 'syntax' highlighting"; description = "Wrapper for 'diff' that produces the same output but with pretty 'syntax' highlighting";
homepage = http://www.colordiff.org/; homepage = http://www.colordiff.org/;
license = licenses.gpl3; license = licenses.gpl3;
platforms = platforms.linux; platforms = platforms.linux ++ platforms.darwin;
maintainer = with maintainers; [ nckx ]; maintainer = with maintainers; [ nckx ];
}; };
} }