From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Kost Subject: [PATCH] gnu: Add Russian Aspell dictionary. Date: Mon, 02 Mar 2015 22:40:11 +0300 Message-ID: <871tl7chno.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44252) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YSWCR-00079T-88 for guix-devel@gnu.org; Mon, 02 Mar 2015 14:40:19 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YSWCN-00022G-DT for guix-devel@gnu.org; Mon, 02 Mar 2015 14:40:19 -0500 Received: from mail-la0-x22a.google.com ([2a00:1450:4010:c03::22a]:43639) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YSWCN-00021n-5e for guix-devel@gnu.org; Mon, 02 Mar 2015 14:40:15 -0500 Received: by labgf13 with SMTP id gf13so8114263lab.10 for ; Mon, 02 Mar 2015 11:40:13 -0800 (PST) Received: from leviafan ([217.107.192.172]) by mx.google.com with ESMTPSA id ps2sm2724470lbb.20.2015.03.02.11.40.12 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 02 Mar 2015 11:40:12 -0800 (PST) List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org --=-=-= Content-Type: text/plain Just another aspell dict. --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: attachment; filename=0001-gnu-Add-Russian-Aspell-dictionary.patch Content-Transfer-Encoding: quoted-printable >From 673ff9e4baa0a4c380327908c2300d625c8f9ec4 Mon Sep 17 00:00:00 2001 From: Alex Kost Date: Mon, 2 Mar 2015 22:12:00 +0300 Subject: [PATCH] gnu: Add Russian Aspell dictionary. * gnu/packages/aspell.scm (aspell-dict-ru): New variable. --- gnu/packages/aspell.scm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/gnu/packages/aspell.scm b/gnu/packages/aspell.scm index 122daa7..34b1f57 100644 --- a/gnu/packages/aspell.scm +++ b/gnu/packages/aspell.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright =C2=A9 2013, 2014 Ludovic Court=C3=A8s +;;; Copyright =C2=A9 2015 Alex Kost ;;; ;;; This file is part of GNU Guix. ;;; @@ -114,3 +115,10 @@ dictionaries, including personal ones.") #:sha256 (base32 "14ffy9mn5jqqpp437kannc3559bfdrpk7r36ljkzjalxa53i0hp= r"))) + +(define-public aspell-dict-ru + (aspell-dictionary "ru" "Russian" + #:version "0.99f7-1" + #:sha256 + (base32 + "0ip6nq43hcr7vvzbv4lwwmlwgfa60hrhsldh9xy3zg2prv6bcaa= w"))) --=20 2.2.1 --=-=-=--