From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vincent Legoll Subject: [PATCH 2/6] gnu: darktable: Make some inputs native. Date: Wed, 1 Apr 2020 00:04:35 +0200 Message-ID: <20200331220439.3828-2-vincent.legoll@gmail.com> References: <20200331220439.3828-1-vincent.legoll@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:33710) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jJP0j-0005in-0G for guix-devel@gnu.org; Tue, 31 Mar 2020 18:05:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jJP0h-0008Vg-SP for guix-devel@gnu.org; Tue, 31 Mar 2020 18:05:28 -0400 Received: from mail-wr1-x434.google.com ([2a00:1450:4864:20::434]:37539) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jJP0h-0008R6-Lh for guix-devel@gnu.org; Tue, 31 Mar 2020 18:05:27 -0400 Received: by mail-wr1-x434.google.com with SMTP id w10so28191900wrm.4 for ; Tue, 31 Mar 2020 15:05:27 -0700 (PDT) In-Reply-To: <20200331220439.3828-1-vincent.legoll@gmail.com> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane-mx.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/photo.scm (darktable)[native-inputs]: New field. [inputs]: Move intltool & pkg-config to native-inputs. --- gnu/packages/photo.scm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gnu/packages/photo.scm b/gnu/packages/photo.scm index 585289daf1..9f6e4a3031 100644 --- a/gnu/packages/photo.scm +++ b/gnu/packages/photo.scm @@ -7,6 +7,7 @@ ;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice ;;; Copyright © 2018 Leo Famulari ;;; Copyright © 2020 Sebastian Schott +;;; Copyright © 2020 Vincent Legoll ;;; ;;; This file is part of GNU Guix. ;;; @@ -483,6 +484,9 @@ photographic equipment.") (string-append (assoc-ref inputs "ilmbase") "/include/OpenEXR:" (or (getenv "CPATH") ""))) #t))))) + (native-inputs + `(("intltool" ,intltool) + ("pkg-config" ,pkg-config))) (inputs `(("libxslt" ,libxslt) ("libxml2" ,libxml2) @@ -502,9 +506,7 @@ photographic equipment.") ("ilmbase" ,ilmbase) ("libsoup" ,libsoup) ("python-jsonschema" ,python-jsonschema) - ("intltool" ,intltool) ("perl" ,perl) - ("pkg-config" ,pkg-config) ("libwebp" ,libwebp) ("lensfun" ,lensfun) ("librsvg" ,librsvg) -- 2.25.2