skk-dicts: broaden platforms

As I understand it, these are just data files, so it should be
possible to build them for any platform.
This commit is contained in:
Alyssa Ross 2021-11-12 15:31:45 +00:00
parent ac1f7fdffb
commit 640e83f821
No known key found for this signature in database
GPG Key ID: F9DBED4859B271C0

View File

@ -64,15 +64,15 @@ stdenv.mkDerivation {
enableParallelBuilding = true;
meta = {
meta = with lib; {
description = "A collection of standard SKK dictionaries";
longDescription = ''
This package provides a collection of standard kana-to-kanji
dictionaries for the SKK Japanese input method.
'';
homepage = "https://github.com/skk-dev/dict";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ yuriaisaka ];
platforms = with lib.platforms; linux ++ darwin;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ yuriaisaka ];
platforms = platforms.all;
};
}