colordiff: support Darwin as a platform
This change just adds darwin to the supported platforms attribute of the package.
This commit is contained in:
parent
3b95ae79cd
commit
978d4be3ab
|
@ -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 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue