[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#39636] [PATCH 1/6] gnu: Add kicad-footprints.
From: |
Brice Waegeneire |
Subject: |
[bug#39636] [PATCH 1/6] gnu: Add kicad-footprints. |
Date: |
Sun, 16 Feb 2020 22:28:29 +0100 |
* gnu/packages/engineering.scm (kicad-footprints): Add variable.
---
gnu/packages/engineering.scm | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm
index 4db8109249..cece357720 100644
--- a/gnu/packages/engineering.scm
+++ b/gnu/packages/engineering.scm
@@ -14,6 +14,7 @@
;;; Copyright © 2019 Jovany Leandro G.C <address@hidden>
;;; Copyright © 2019 Steve Sprang <address@hidden>
;;; Copyright © 2019 John Soo <address@hidden>
+;;; Copyright © 2020 Brice Waegeneire <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -953,6 +954,23 @@ libraries for KiCad 5.")
;; See <https://github.com/KiCad/kicad-symbols/blob/master/LICENSE.md>.
(license license:cc-by-sa4.0)))
+(define-public kicad-footprints
+ (package
+ (inherit kicad-symbols)
+ (name "kicad-footprints")
+ (version "5.1.5")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/KiCad/kicad-footprints.git")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1c4whgn14qhz4yqkl46w13p6rpv1k0hsc9s9h9368fxfcz9knb2j"))))
+ (synopsis "Official KiCad footprint libraries")
+ (description "This package contains the official KiCad footprint
libraries.")))
+
(define-public linsmith
(package
(name "linsmith")
--
2.25.0
- [bug#39636] [PATCH 0/6] KiCad add translation and update libraries., Brice Waegeneire, 2020/02/16
- [bug#39636] [PATCH 3/6] gnu: Add kicad-templates., Brice Waegeneire, 2020/02/16
- [bug#39636] [PATCH 1/6] gnu: Add kicad-footprints.,
Brice Waegeneire <=
- [bug#39636] [PATCH 2/6] gnu: Add variable kicad-packages3d., Brice Waegeneire, 2020/02/16
- [bug#39636] [PATCH 4/6] gnu: Remove kicad-library., Brice Waegeneire, 2020/02/16
- [bug#39636] [PATCH 5/6] gnu: kicad-symbols: Update synopsis and description., Brice Waegeneire, 2020/02/16
- [bug#39636] [PATCH 6/6] gnu: kicad: Add translations and search paths., Brice Waegeneire, 2020/02/16
- bug#39636: [PATCH 0/6] KiCad add translation and update libraries., Danny Milosavljevic, 2020/02/27