From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:45871) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j3RTM-0008Qd-7b 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 1j3RTL-0002ye-9B for guix-patches@gnu.org; Sun, 16 Feb 2020 16:29:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:60062) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1j3RTL-0002yU-5K for guix-patches@gnu.org; Sun, 16 Feb 2020 16:29:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1j3RTL-00087C-37 for guix-patches@gnu.org; Sun, 16 Feb 2020 16:29:03 -0500 Subject: [bug#39636] [PATCH 3/6] gnu: Add kicad-templates. Resent-Message-ID: From: Brice Waegeneire Date: Sun, 16 Feb 2020 22:28:31 +0100 Message-Id: <20200216212834.3862-3-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-templates): 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 2d488e2ae5..adee1761d6 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -988,6 +988,24 @@ libraries for KiCad 5.") (synopsis "Official KiCad 3D model libraries") (description "This package contains the official KiCad 3D model libraries."))) +(define-public kicad-templates + (package + (inherit kicad-symbols) + (name "kicad-templates") + (version "5.1.5") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/KiCad/kicad-templates.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0cs3bm3zb5ngw5ldn0lzw5bvqm4kvcidyrn76438alffwiz2b15g")))) + (synopsis "Official KiCad project and worksheet templates") + (description "This package contains the official KiCad project and +worksheet templates."))) + (define-public linsmith (package (name "linsmith") -- 2.25.0