From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vincent Legoll Subject: native or not Date: Mon, 30 Mar 2020 01:11:50 +0200 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:34249) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jIh63-0006fe-OZ for guix-devel@gnu.org; Sun, 29 Mar 2020 19:12:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jIh62-0006Fo-Re for guix-devel@gnu.org; Sun, 29 Mar 2020 19:12:03 -0400 Received: from mail-io1-xd43.google.com ([2607:f8b0:4864:20::d43]:44763) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jIh62-0006Cg-N1 for guix-devel@gnu.org; Sun, 29 Mar 2020 19:12:02 -0400 Received: by mail-io1-xd43.google.com with SMTP id r25so3964324ioc.11 for ; Sun, 29 Mar 2020 16:12:02 -0700 (PDT) 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 Hello, I've been having a first look at guix data service. And looking at the guix lint page, I saw the "should probably be native input" warnings, and gave it a try on sudo, naively thinking it would benefit something (maybe a container or vm image size). Is there a way to see any benefit from these changes (without building a vm or container image each time) ? Are those changes useful to do on their own ? For example this: diff --git {a,b}/gnu/packages/admin.scm index 2f661f5e81..457dc1e3dc 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -1268,9 +1268,10 @@ system administrator.") #:tests? #f)) + (native-inputs + `(("groff" ,groff))) (inputs - `(("groff" ,groff) - ("linux-pam" ,linux-pam) + `(("linux-pam" ,linux-pam) ("zlib" ,zlib) -- Vincent Legoll