From 39ad0e6cf9ed895b88041f8babe59506178a6fcb Mon Sep 17 00:00:00 2001 From: Ekaitz Zarraga Date: Mon, 8 Apr 2024 16:11:52 +0200 Subject: guix: add package that pandoc can find --- guix.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 guix.scm (limited to 'guix.scm') diff --git a/guix.scm b/guix.scm new file mode 100644 index 0000000..f7fecae --- /dev/null +++ b/guix.scm @@ -0,0 +1,25 @@ +(use-modules (guix packages) + ((guix licenses) #:prefix license:) + (guix gexp) + (guix build-system copy)) + +(define %source-dir (dirname (current-filename))) + +(define-public templates + (package + (name "templates") + (version "1.0.0") + (source (local-file %source-dir #:recursive? #t)) + (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/") + (synopsis "Pandoc templates for ElenQ Technology") + (description "A set of well configured Pandoc templates for ElenQ +Technology's documents.") + (license license:asl2.0))) + +templates -- cgit v1.2.3