aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2022-10-21 15:18:06 -0300
committerEuAndreh <eu@euandre.org>2022-10-21 15:18:06 -0300
commit333cce672b46fdd6d09c6116feb2d85821b3b933 (patch)
treed6587b86caeaeaa90e5ee8c2875ea86d918fa796
parentsrc/xyz/euandreh/queue.scm: Move hunspell dictionaries out of custom channel (diff)
downloadpackage-repository-333cce672b46fdd6d09c6116feb2d85821b3b933.tar.gz
package-repository-333cce672b46fdd6d09c6116feb2d85821b3b933.tar.xz
src/xyz/euandreh/pending.scm: Remove, patch was applied upstream
-rw-r--r--src/xyz/euandreh/pending.scm38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/xyz/euandreh/pending.scm b/src/xyz/euandreh/pending.scm
deleted file mode 100644
index 69ce776..0000000
--- a/src/xyz/euandreh/pending.scm
+++ /dev/null
@@ -1,38 +0,0 @@
-(define-module (xyz euandreh pending)
- #:use-module (guix build-system gnu)
- #:use-module (guix download)
- #:use-module (guix licenses)
- #:use-module (guix packages)
- #:use-module (gnu packages bison)
- #:use-module (gnu packages flex))
-
-;; Remove once https://issues.guix.gnu.org/58609 is applie
-(define-public grap
- (package
- (name "grap")
- (version "1.46")
- (source
- (origin
- (method url-fetch)
- (uri
- (string-append "https://www.lunabase.org/~faber/Vault/software/grap/grap-"
- version
- ".tar.gz"))
- (sha256
- (base32 "1d4bhhgi64x4cjww7fj0lqgr20w7lqnl2aizj6cndsgyxkywx3ks"))))
- (build-system gnu-build-system)
- (native-inputs
- (list flex
- bison))
- (synopsis "Tool for creating graphs with troff")
- (description "Grap is a language for typesetting graphs specified and
-first implemented by Brian Kernighan and Jon Bentley at Bell Labs. It is an
-expressive language for describing graphs and incorporating them in typeset
-documents. It is implemented as a preprocessor to Kernigan's pic language for
-describing languages, so any system that can use pic can use grap. For sure,
-TeX and groff can use it.")
- (home-page "https://github.com/snorerot13/grap")
- (license bsd-3)))
-
-(list
- grap)