Skip to content
Snippets Groups Projects
Unverified Commit 47f9fb18 authored by Danny Milosavljevic's avatar Danny Milosavljevic
Browse files

gnu: Add kicad-symbols.

* gnu/packages/engineering.scm (kicad-symbols): New variable.
parent 3d0fdb34
No related branches found
No related tags found
No related merge requests found
...@@ -823,6 +823,30 @@ (define-public kicad-library ...@@ -823,6 +823,30 @@ (define-public kicad-library
render model libraries.") render model libraries.")
(license license:lgpl2.0+)))) (license license:lgpl2.0+))))
(define-public kicad-symbols
(package
(name "kicad-symbols")
(version "5.0.1")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/KiCad/kicad-symbols.git")
(commit version)))
(file-name (string-append "kicad-symbols-" version "-checkout"))
(sha256
(base32
"18z5vpdq7hy2mpvm5vz1dz3ra3a5iybavvlzi8q2bmmdb6gsvf64"))))
(build-system cmake-build-system)
(arguments
`(#:tests? #f)) ; No tests exist
(home-page "http://kicad-pcb.org/")
(synopsis "Official KiCad schematic symbol libraries for KiCad 5")
(description "This package contains the official KiCad schematic symbol
libraries for KiCad 5.")
;; TODO: Exception: "To the extent that the creation of electronic designs that use 'Licensed Material' can be considered to be 'Adapted Material', then the copyright holder waives article 3 of the license with respect to these designs and any generated files which use data provided as part of the 'Licensed Material'."
;; See <https://github.com/KiCad/kicad-symbols/blob/master/LICENSE.md>.
(license license:cc-by-sa4.0)))
(define-public linsmith (define-public linsmith
(package (package
(name "linsmith") (name "linsmith")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment