From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42093) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gABa5-0002EH-DN for guix-patches@gnu.org; Wed, 10 Oct 2018 06:19:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gABa2-0001Ha-6h for guix-patches@gnu.org; Wed, 10 Oct 2018 06:19:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:38667) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gABa2-0001HS-30 for guix-patches@gnu.org; Wed, 10 Oct 2018 06:19:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gABa1-0003CB-Oi for guix-patches@gnu.org; Wed, 10 Oct 2018 06:19:01 -0400 Subject: [bug#33004] [PATCH] gnu: Add kicad-symbols. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41826) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gABZ8-0001mo-1j for guix-patches@gnu.org; Wed, 10 Oct 2018 06:18:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gABZ4-0000lo-IU for guix-patches@gnu.org; Wed, 10 Oct 2018 06:18:05 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:41042) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gABZ4-0000c9-7v for guix-patches@gnu.org; Wed, 10 Oct 2018 06:18:02 -0400 From: Danny Milosavljevic Date: Wed, 10 Oct 2018 12:17:36 +0200 Message-Id: <20181010101736.21507-1-dannym@scratchpost.org> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 33004@debbugs.gnu.org * gnu/packages/engineering.scm (kicad-symbols): New variable. --- gnu/packages/engineering.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index ee524ec78..2516143a7 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -823,6 +823,30 @@ electrical diagrams), gerbview (viewing Gerber files= ) and others.") render model libraries.") (license license:lgpl2.0+)))) =20 +(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 "-check= out")) + (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 sym= bol +libraries for Kicad 5.") + ;; TODO: Exception: "To the extent that the creation of electronic d= esigns that use 'Licensed Material' can be considered to be 'Adapted Mate= rial', then the copyright holder waives article 3 of the license with res= pect to these designs and any generated files which use data provided as = part of the 'Licensed Material'." + ;; See . + (license license:cc-by-sa4.0))) + (define-public linsmith (package (name "linsmith")