From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:35043) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1imoWy-00073a-5B for guix-patches@gnu.org; Wed, 01 Jan 2020 19:40:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1imoWx-0003wD-6n for guix-patches@gnu.org; Wed, 01 Jan 2020 19:40:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:60077) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1imoWx-0003w0-3y for guix-patches@gnu.org; Wed, 01 Jan 2020 19:40:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1imoWx-0003eX-2a for guix-patches@gnu.org; Wed, 01 Jan 2020 19:40:03 -0500 Subject: [bug#38860] [PATCH 3/7] gnu: Add jfsutils-static. Resent-Message-ID: Date: Thu, 2 Jan 2020 01:38:58 +0100 Message-Id: <20200102003902.15205-3-me@tobias.gr> In-Reply-To: <20200102003902.15205-1-me@tobias.gr> References: <20200102003902.15205-1-me@tobias.gr> 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" Reply-to: Tobias Geerinckx-Rice , Tobias Geerinckx-Rice via Guix-patches From: Tobias Geerinckx-Rice via Guix-patches via To: 38860@debbugs.gnu.org gnu/packages/file-systems.scm (jfsutils/static): New public variable. --- gnu/packages/file-systems.scm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm index fbf0e2641f..3a8848b3ad 100644 --- a/gnu/packages/file-systems.scm +++ b/gnu/packages/file-systems.scm @@ -145,6 +145,15 @@ transaction log. @end enumerate\n") (license license:gpl3+))) ; no explicit version given +(define-public jfsutils/static + (static-package + (package + (inherit jfsutils) + (name "jfsutils-static") + (inputs + `(("util-linux:static" ,util-linux "static") + ,@(package-inputs jfsutils)))))) + (define-public disorderfs (package (name "disorderfs") -- 2.23.0