diff options
author | Thanos Apollo <[email protected]> | 2024-07-16 07:42:40 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-07-16 07:49:28 +0300 |
commit | d7fdd9146bfbeb9fca9c541a6f0ea757d8980472 (patch) | |
tree | 725218e66cfef78aa5d8bdd2723cb276a43a8134 | |
parent | a432614e054217038c076b14fe037f93c63a928a (diff) |
packages: New module: hunspell
-rw-r--r-- | hecate/packages/hunspell.scm | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/hecate/packages/hunspell.scm b/hecate/packages/hunspell.scm new file mode 100644 index 0000000..4b8e0db --- /dev/null +++ b/hecate/packages/hunspell.scm @@ -0,0 +1,36 @@ +(define-module (hecate packages hunspell) + #:use-module (guix build-system gnu) + #:use-module (guix build-system trivial) + #:use-module (guix download) + #:use-module (guix gexp) + #:use-module (guix git-download) + #:use-module ((guix licenses) #:prefix license:) + #:use-module (guix packages) + #:use-module (ice-9 match) + #:use-module (gnu packages aspell) + #:use-module (gnu packages autotools) + #:use-module (gnu packages base) + #:use-module (gnu packages compression) + #:use-module (gnu packages m4) + #:use-module (gnu packages perl) + #:use-module (gnu packages textutils)) + +;; (define-public hunspell-dict-el +;; (let ((commit "cd62887723f7adcac4c952cf6d4894f1873082b5")) +;; (package +;; (name "hunspell-dict-el") +;; (version "20170630") +;; (source +;; (origin +;; (method git-fetch) +;; (uri (git-reference +;; (url "https://github.com/stevestavropoulos/elspell") +;; (commit commit))) +;; (filename (git-file-name name version)) +;; (sha256 +;; (base32 +;; "0qxlkd012r45ppd21kldbq9k5ac5nmxz290z6m2kch9l56v768k1")))) +;; (build-system gnu-build-system) +;; (native-inputs +;; (list libiconv)) +;; (native-search)))) |