From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:56701) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gmQu7-0005is-7w for guix-patches@gnu.org; Wed, 23 Jan 2019 17:21:55 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gmQlb-0002ue-At for guix-patches@gnu.org; Wed, 23 Jan 2019 17:13:05 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:43852) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gmQla-0002tZ-Ng for guix-patches@gnu.org; Wed, 23 Jan 2019 17:13:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gmQla-0006Ex-B6 for guix-patches@gnu.org; Wed, 23 Jan 2019 17:13:02 -0500 Subject: [bug#34137] [PATCH] gnu: Add ghc-libmp. Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <878szgv0tw.fsf@gmail.com> <87ef978fco.fsf@ngyro.com> <874la2v4et.fsf@gmail.com> Date: Wed, 23 Jan 2019 23:12:34 +0100 In-Reply-To: <874la2v4et.fsf@gmail.com> (Gabriel Hondet's message of "Mon, 21 Jan 2019 08:46:50 +0100") Message-ID: <87fttjdnvx.fsf@gnu.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: Gabriel Hondet Cc: 34137@debbugs.gnu.org Hi Gabriel, Gabriel Hondet skribis: > diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm > index 3fe5d06f4..df4f64470 100644 > --- a/gnu/packages/mpd.scm > +++ b/gnu/packages/mpd.scm > @@ -6,6 +6,7 @@ > ;;; Copyright =C2=A9 2015 Paul van der Walt > ;;; Copyright =C2=A9 2016, 2018 Leo Famulari > ;;; Copyright =C2=A9 2018 Tobias Geerinckx-Rice > +;;; Copyright =C2=A9 2019 Gabriel Hondet > ;;; > ;;; This file is part of GNU Guix. > ;;; > @@ -31,6 +32,7 @@ > #:use-module (guix build-system gnu) > #:use-module (guix build-system meson) > #:use-module (guix build-system python) > + #:use-module (guix build-system haskell) > #:use-module (gnu packages avahi) > #:use-module (gnu packages boost) > #:use-module (gnu packages gcc) > @@ -51,6 +53,8 @@ > #:use-module (gnu packages pkg-config) > #:use-module (gnu packages python) > #:use-module (gnu packages python-xyz) > + #:use-module (gnu packages haskell) > + #:use-module (gnu packages haskell-check) In an effort to avoid pulling in all the Haskell package collection from mpd.scm, could you move ghc-libmpd to haskell.scm or a new haskell-audio.scm file? Thanks! Ludo=E2=80=99.