summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEkaitz Zarraga <ekaitz@elenq.tech>2020-05-26 11:52:46 +0200
committerEkaitz Zarraga <ekaitz@elenq.tech>2020-05-26 11:52:46 +0200
commitae456eb3949d22323c40f6d063d388ff7a71ae40 (patch)
tree69ae5430ba840fda82484cf77a2629d1833ea268
parentdc3e9df31e7677a15c280e6a2661005d402ed0d7 (diff)
Remove pandoc (already packaged in guix main channel)
-rw-r--r--pandoc.scm34
1 files changed, 0 insertions, 34 deletions
diff --git a/pandoc.scm b/pandoc.scm
deleted file mode 100644
index 7de8cc7..0000000
--- a/pandoc.scm
+++ /dev/null
@@ -1,34 +0,0 @@
-(define-module (pandoc)
- #:use-module (guix packages)
- #:use-module (guix build-system gnu)
- #:use-module (guix licenses)
- #:use-module (guix download))
-
-(define-public pandoc
- (package
- (name "pandoc")
- (version "2.7.3")
- (source (origin
- (method url-fetch)
- (uri (string-append "https://github.com/jgm/pandoc/releases/download/"
- version
- "/pandoc-" version "-linux.tar.gz"))
- (sha256
- (base32
- "0xfvmfw1yn72iiy52ia7sk6hgrvn62qwkw009l02j0y55va5yxzb"))))
- (build-system gnu-build-system)
- (arguments
- `(#:tests? #f
- #:phases (modify-phases
- %standard-phases
- (replace 'install
- (lambda _
- (copy-recursively "." %output)))
- (delete 'build)
- (delete 'configure))))
- (synopsis "A universal document converter")
- (description
- "If you need to convert files from one markup format into another,
-pandoc is your swiss-army knife.")
- (home-page "https://pandoc.org")
- (license gpl2+)))