summaryrefslogtreecommitdiff
path: root/elenq/documentation.scm
blob: 3ce728fa97825bb2d4aa2a4373a05e7bb056191f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
(define-module (elenq documentation)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix build-system copy)
  #:use-module (guix gexp)
  #:use-module (guix git-download)
  #:use-module (guix packages))

(define-public pandoc-templates
  (let ((revision "1")
        (commit "39ad0e6cf9ed895b88041f8babe59506178a6fcb"))
    (package
      (name "pandoc-templates")
      (version (git-version "0.0.0" revision commit))
      (source (origin
                (method git-fetch)
                (uri (git-reference
                       (url "git://git.elenq.tech/pandoc-templates")
                       (commit commit)))
                (sha256
                  (base32 "1z2p1dxlgivdgw79f74n2ax84xr8g0q62fsxpwag4dfdmik7131b"))))
      (build-system copy-build-system)
      (arguments (list #:install-plan ''(("pandoc" "/share/pandoc"))))
      (native-search-paths
        (list (search-path-specification
                (variable "XDG_DATA_HOME")
                (files '("share")))))
      (home-page "http://git.elenq.tech/pandoc-templates")
      (synopsis "Pandoc templates for ElenQ Technology")
      (description "A set of well configured Pandoc templates for ElenQ
Technology's documents.")
      (license license:asl2.0))))