From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57424) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fdymo-0005Uu-HO for guix-patches@gnu.org; Fri, 13 Jul 2018 10:11:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fdymj-0006wl-TB for guix-patches@gnu.org; Fri, 13 Jul 2018 10:11:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:51180) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fdymj-0006wc-P9 for guix-patches@gnu.org; Fri, 13 Jul 2018 10:11:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fdymj-0005Is-HX for guix-patches@gnu.org; Fri, 13 Jul 2018 10:11:01 -0400 Subject: [bug#32138] [PATCH] gnu: Add inchi. Resent-Message-ID: References: <20180713133941.12371-1-kkebreau@posteo.net> From: Jelle Licht In-reply-to: <20180713133941.12371-1-kkebreau@posteo.net> Date: Fri, 13 Jul 2018 16:10:43 +0200 Message-ID: <87in5jcjks.fsf@fsfe.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 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: Kei Kebreau Cc: 32138@debbugs.gnu.org Kei Kebreau writes: > * gnu/packages/chemistry.scm (inchi): New variable. > --- > gnu/packages/chemistry.scm | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/gnu/packages/chemistry.scm b/gnu/packages/chemistry.scm > index f1359b2cf..df79f252b 100644 > --- a/gnu/packages/chemistry.scm > +++ b/gnu/packages/chemistry.scm > @@ -1,5 +1,6 @@ > ;;; GNU Guix --- Functional package management for GNU > ;;; Copyright =C2=A9 2018 Konrad Hinsen > +;;; Copyright =C2=A9 2018 Kei Kebreau > ;;; > ;;; This file is part of GNU Guix. > ;;; > @@ -20,9 +21,11 @@ > #:use-module (guix packages) > #:use-module ((guix licenses) #:prefix license:) > #:use-module (guix download) > + #:use-module (gnu packages compression) > #:use-module (gnu packages gv) > #:use-module (gnu packages maths) > #:use-module (gnu packages python) > + #:use-module (guix build-system gnu) > #:use-module (guix build-system python)) >=20=20 > (define-public domainfinder It seems you forgot to commit the actual package definition :-).