mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add kicad-doc.
* gnu/packages/engineering.scm (kicad-doc): New variable. (kicad)[native-search-paths]: Add 'KICAD'. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
b136f7cda3
commit
bf51c1aff4
1 changed files with 45 additions and 1 deletions
|
@ -67,6 +67,7 @@ (define-module (gnu packages engineering)
|
|||
#:use-module (gnu packages curl)
|
||||
#:use-module (gnu packages dejagnu)
|
||||
#:use-module (gnu packages digest)
|
||||
#:use-module (gnu packages docbook)
|
||||
#:use-module (gnu packages documentation)
|
||||
#:use-module (gnu packages flex)
|
||||
#:use-module (gnu packages fontutils)
|
||||
|
@ -102,6 +103,7 @@ (define-module (gnu packages engineering)
|
|||
#:use-module (gnu packages pcre)
|
||||
#:use-module (gnu packages perl)
|
||||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (gnu packages pretty-print)
|
||||
#:use-module (gnu packages python)
|
||||
#:use-module (gnu packages python-xyz)
|
||||
#:use-module (gnu packages qt)
|
||||
|
@ -849,7 +851,6 @@ (define-public inspekt3d
|
|||
Emacs).")
|
||||
(license license:gpl3+))))
|
||||
|
||||
;; TODO Add doc https://gitlab.com/kicad/services/kicad-doc/-/tree/master
|
||||
(define-public kicad
|
||||
(package
|
||||
(name "kicad")
|
||||
|
@ -899,6 +900,9 @@ (define-public kicad
|
|||
#t)))))
|
||||
(native-search-paths
|
||||
(list (search-path-specification
|
||||
(variable "KICAD") ; to find kicad-doc
|
||||
(files '("")))
|
||||
(search-path-specification
|
||||
(variable "KICAD_TEMPLATE_DIR")
|
||||
(files '("share/kicad/template")))
|
||||
(search-path-specification
|
||||
|
@ -970,6 +974,46 @@ (define kicad-i18n
|
|||
(define-public kicad-i18l
|
||||
(deprecated-package "kicad-i18l" kicad-i18n))
|
||||
|
||||
(define-public kicad-doc
|
||||
(package
|
||||
(name "kicad-doc")
|
||||
(version "5.1.6")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://gitlab.com/kicad/services/kicad-doc.git")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"03kvss8a0xrjnfvkwymm0vfd7rn9ix7i926xdzz9jg9iycrjfj3g"))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
`(#:configure-flags (list "-DBUILD_FORMATS=html")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(delete 'build)
|
||||
(add-before 'install 'set-perl-env
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(setenv "PERL5LIB"
|
||||
(string-append (assoc-ref inputs "perl-unicode-linebreak")
|
||||
"/lib/perl5/site_perl" ":"
|
||||
(getenv "PERL5LIB")))
|
||||
#t))
|
||||
(delete 'check))))
|
||||
(native-inputs
|
||||
`(("asciidoc" ,asciidoc)
|
||||
("gettext" ,gettext-minimal)
|
||||
("git" ,git-minimal)
|
||||
("perl" ,perl)
|
||||
("perl-unicode-linebreak" ,perl-unicode-linebreak)
|
||||
("po4a" ,po4a)
|
||||
("source-highlight" ,source-highlight)))
|
||||
(home-page "https://kicad.org")
|
||||
(synopsis "KiCad official documentation")
|
||||
(description "This repository contains the official KiCad documentation.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public kicad-symbols
|
||||
(package
|
||||
(name "kicad-symbols")
|
||||
|
|
Loading…
Reference in a new issue