From db426fa5357a2d102e46d6136298f908a57d7905 Mon Sep 17 00:00:00 2001 From: Andy3153 Date: Thu, 30 May 2024 14:55:48 +0300 Subject: [PATCH 1/2] maintainers: add Andy3153 --- maintainers/maintainer-list.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 93330c1434f40..ec43ec7e3566b 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -1310,6 +1310,13 @@ githubId = 29887; name = "Andrew Smith"; }; + Andy3153 = { + name = "Andrei Dobrete"; + email = "andy3153@protonmail.com"; + matrix = "@andy3153:matrix.org"; + github = "Andy3153"; + githubId = 53472302; + }; andys8 = { github = "andys8"; githubId = 13085980; From 923ea8730c50942be208626421a300aee6411396 Mon Sep 17 00:00:00 2001 From: Andy3153 Date: Mon, 20 May 2024 21:18:18 +0300 Subject: [PATCH 2/2] hunspellDicts.ro-ro: init at 3.3.10 add a Romanian dictionary for Hunspell from rospell on Sourceforge --- .../libraries/hunspell/dictionaries.nix | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/pkgs/development/libraries/hunspell/dictionaries.nix b/pkgs/development/libraries/hunspell/dictionaries.nix index 7bdc1980e6729..6b6640ddfb712 100644 --- a/pkgs/development/libraries/hunspell/dictionaries.nix +++ b/pkgs/development/libraries/hunspell/dictionaries.nix @@ -968,6 +968,35 @@ rec { }; }; + /* ROMANIAN */ + ro_RO = ro-ro; + ro-ro = mkDict rec { + pname = "hunspell-dict-ro-ro"; + version = "3.3.10"; + shortName = "ro-ro"; + dictFileName = "ro_RO"; + fileName = "${dictFileName}.${version}.zip"; + shortDescription = "Romanian (Romania)"; + readmeFile = "README"; + + src = fetchurl { + url = "https://downloads.sourceforge.net/rospell/${fileName}"; + hash = "sha256-fxKNZOoGyeZxHDCxGMCv7vsBTY8zyS2szfRVq6LQRRk="; + }; + + nativeBuildInputs = [ unzip ]; + unpackCmd = '' + unzip $src ${dictFileName}.aff ${dictFileName}.dic ${readmeFile} -d ${dictFileName} + ''; + + meta = { + description = "Hunspell dictionary for ${shortDescription} from rospell"; + homepage = "https://sourceforge.net/projects/rospell/"; + license = with lib.licenses; [ gpl2Only ]; + maintainers = with lib.maintainers; [ Andy3153 ]; + }; + }; + /* Turkish */ tr_TR = tr-tr; tr-tr = mkDict rec {