aboutsummaryrefslogtreecommitdiff
path: root/src/xyz/euandreh
diff options
context:
space:
mode:
Diffstat (limited to 'src/xyz/euandreh')
-rw-r--r--src/xyz/euandreh/queue.scm132
1 files changed, 70 insertions, 62 deletions
diff --git a/src/xyz/euandreh/queue.scm b/src/xyz/euandreh/queue.scm
index c696a9d..b69637f 100644
--- a/src/xyz/euandreh/queue.scm
+++ b/src/xyz/euandreh/queue.scm
@@ -31,28 +31,29 @@
(package
(name "grap")
(version "1648c3a1dafed63969f23ce2a904ff68df21892c")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/snorerot13/grap")
- (commit "1648c3a1dafed63969f23ce2a904ff68df21892c")))
- (sha256
- (base32
- "0zjzmp2bqig8ni20hw40d99rl1wasyhjl7hwl3wqr7q3lc4dcgwb"))))
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/snorerot13/grap")
+ (commit "1648c3a1dafed63969f23ce2a904ff68df21892c")))
+ (sha256
+ (base32 "0zjzmp2bqig8ni20hw40d99rl1wasyhjl7hwl3wqr7q3lc4dcgwb"))))
(build-system gnu-build-system)
(arguments
- `(#:parallel-build? #f
- #:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'autogen
- (lambda _
- (invoke "autoreconf" "-vif"))))))
+ `(#:parallel-build? #f
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'autogen
+ (lambda _
+ (invoke "autoreconf" "-vif"))))))
(native-inputs
- `(("automake" ,automake)
- ("autoconf" ,autoconf)
- ("bison" ,bison)
- ("groff" ,groff)
- ("flex" ,flex)))
+ `(("automake" ,automake)
+ ("autoconf" ,autoconf)
+ ("bison" ,bison)
+ ("groff" ,groff)
+ ("flex" ,flex)))
(synopsis "grap tool for troff graphs")
(description "This is grap, an implementation of Kernighan and
Bentley's grap language for typesetting graphs. I got sick of groff
@@ -64,30 +65,34 @@ not having a version of grap, so I built one.")
(package
(name (string-append "hunspell-dict-" dict-name "-utf8"))
(version "630b34e6f8f3cbe7aa7b27b6d8ab118e27252fd1")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/wooorm/dictionaries")
- (commit version)))
- (file-name (git-file-name "hunspell-dictionary-utf8" version))
- (sha256
- (base32 "1iknwzh5h04m067ddw9hlzc1qqj4mr9mdkcfapsnay304laaiyn5"))))
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/wooorm/dictionaries")
+ (commit version)))
+ (file-name
+ (git-file-name "hunspell-dictionary-utf8" version))
+ (sha256
+ (base32 "1iknwzh5h04m067ddw9hlzc1qqj4mr9mdkcfapsnay304laaiyn5"))))
(build-system trivial-build-system)
(arguments
- `(#:modules ((guix build utils))
- #:builder (begin
- (use-modules (guix build utils))
- (let ((source-prefix (string-append (assoc-ref %build-inputs "source")
- "/dictionaries/"
- ,dict-name
- "/index"))
- (install-prefix (string-append %output "/share/hunspell/")))
- (mkdir-p install-prefix)
- (copy-file (string-append source-prefix ".aff")
- (string-append install-prefix ,dict-name ".aff"))
- (copy-file (string-append source-prefix ".dic")
- (string-append install-prefix ,dict-name ".dic"))))))
- (synopsis (string-append "Hunspell " dict-name " dictionary in UTF-8"))
+ `(#:modules ((guix build utils))
+ #:builder
+ (begin
+ (use-modules (guix build utils))
+ (let ((source-prefix (string-append (assoc-ref %build-inputs "source")
+ "/dictionaries/"
+ ,dict-name
+ "/index"))
+ (install-prefix (string-append %output "/share/hunspell/")))
+ (mkdir-p install-prefix)
+ (copy-file (string-append source-prefix ".aff")
+ (string-append install-prefix ,dict-name ".aff"))
+ (copy-file (string-append source-prefix ".dic")
+ (string-append install-prefix ,dict-name ".dic"))))))
+ (synopsis (string-append "Hunspell " dict-name " dictionary in UTF-8"))
(description (string-append "Hunspell " dict-name " dictionary in UTF-8"))
(license license:expat)
(home-page "https://github.com/wooorm/dictionaries")))
@@ -109,8 +114,8 @@ not having a version of grap, so I built one.")
(inherit hunspell)
(name "hunspell-iconv")
(inputs
- `(("libiconv" ,libiconv)
- ,@(package-inputs hunspell)))))
+ `(("libiconv" ,libiconv)
+ ,@(package-inputs hunspell)))))
;; Wait for upstream to release 0.2.1, or 0.3.0
(define-public python-flake8-implicit-str-concat-patched
@@ -118,9 +123,10 @@ not having a version of grap, so I built one.")
(inherit python-flake8-implicit-str-concat)
(name "python-flake8-implicit-str-concat-patched")
(propagated-inputs
- `(("python-attrs" ,python-attrs-bootstrap)
- ,@(alist-delete "python-attrs" (package-propagated-inputs
- python-flake8-implicit-str-concat))))))
+ `(("python-attrs" ,python-attrs-bootstrap)
+ ,@(alist-delete "python-attrs"
+ (package-propagated-inputs
+ python-flake8-implicit-str-concat))))))
;; Wait for python-flake8-implicit-str-concat to be updated to send in one batch
;; Wait for PR to be merged upstream:
@@ -129,14 +135,15 @@ not having a version of grap, so I built one.")
(package
(inherit python-pymd4c)
(version "8d58510d801d1765e9f83e3d153fb81a8e3b17a2")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/dominickpastore/pymd4c")
- (commit version)))
- (sha256
- (base32
- "1pj8bhps7421ig3rgwmdxg0974di2l0skyc3kmp0mbk9l9yqig8f"))))))
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/dominickpastore/pymd4c")
+ (commit version)))
+ (sha256
+ (base32 "1pj8bhps7421ig3rgwmdxg0974di2l0skyc3kmp0mbk9l9yqig8f"))))))
;; Depends on python-flake8-implicit-str-concat to be updated
(define-public mdpo-patched
@@ -147,17 +154,18 @@ not having a version of grap, so I built one.")
(source
(origin
(method url-fetch)
- (uri (pypi-uri "mdpo" version))
+ (uri
+ (pypi-uri "mdpo" version))
(sha256
- (base32 "0p8nbyqlljqfm38yj2nl2am5bkd1pf37ybwymrhs7dlk04zm9a6b"))))
+ (base32 "0p8nbyqlljqfm38yj2nl2am5bkd1pf37ybwymrhs7dlk04zm9a6b"))))
(native-inputs
- `(("python-flake8-implicit-str-concat" ,python-flake8-implicit-str-concat-patched)
- ,@(alist-delete "python-flake8-implicit-str-concat"
- (package-native-inputs mdpo))))
+ `(("python-flake8-implicit-str-concat" ,python-flake8-implicit-str-concat-patched)
+ ,@(alist-delete "python-flake8-implicit-str-concat"
+ (package-native-inputs mdpo))))
(propagated-inputs
- `(("python-pymd4c" ,python-pymd4c-latest)
- ,@(alist-delete "python-pymd4c"
- (package-propagated-inputs mdpo))))))
+ `(("python-pymd4c" ,python-pymd4c-latest)
+ ,@(alist-delete "python-pymd4c"
+ (package-propagated-inputs mdpo))))))
(define-public python-docx
(package