From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:45868) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j3RTM-0008Qc-4Z for guix-patches@gnu.org; Sun, 16 Feb 2020 16:29:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j3RTK-0002yA-Rp for guix-patches@gnu.org; Sun, 16 Feb 2020 16:29:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:60061) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1j3RTK-0002xx-Ot for guix-patches@gnu.org; Sun, 16 Feb 2020 16:29:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1j3RTK-000874-Mm for guix-patches@gnu.org; Sun, 16 Feb 2020 16:29:02 -0500 Subject: [bug#39636] [PATCH 2/6] gnu: Add variable kicad-packages3d. Resent-Message-ID: From: Brice Waegeneire Date: Sun, 16 Feb 2020 22:28:30 +0100 Message-Id: <20200216212834.3862-2-brice@waegenei.re> In-Reply-To: <20200216212621.3063-1-brice@waegenei.re> References: <20200216212621.3063-1-brice@waegenei.re> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: 39636@debbugs.gnu.org * gnu/packages/engineering.scm (kicad-packages3d): Add variable. --- gnu/packages/engineering.scm | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index cece357720..2d488e2ae5 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -971,6 +971,23 @@ libraries for KiCad 5.") (synopsis "Official KiCad footprint libraries") (description "This package contains the official KiCad footprint libraries."))) +(define-public kicad-packages3d + (package + (inherit kicad-symbols) + (name "kicad-packages3d") + (version "5.1.5") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/KiCad/kicad-packages3d.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0cff2ms1bsw530kqb1fr1m2pjixyxzwa81mxgac3qpbcf8fnpvaz")))) + (synopsis "Official KiCad 3D model libraries") + (description "This package contains the official KiCad 3D model libraries."))) + (define-public linsmith (package (name "linsmith") -- 2.25.0