From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark Meyer Subject: [PATCH] qjackctl Date: Wed, 29 Mar 2017 11:48:01 +0200 Message-ID: <8760isbei6.fsf@ofosos.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34727) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ctAD2-00061o-A0 for guix-devel@gnu.org; Wed, 29 Mar 2017 05:48:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ctACz-0003lJ-5c for guix-devel@gnu.org; Wed, 29 Mar 2017 05:48:08 -0400 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:37796) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ctACy-0003ko-W8 for guix-devel@gnu.org; Wed, 29 Mar 2017 05:48:05 -0400 Received: from compute7.internal (compute7.nyi.internal [10.202.2.47]) by mailout.nyi.internal (Postfix) with ESMTP id 3DFC0208A2 for ; Wed, 29 Mar 2017 05:48:03 -0400 (EDT) Received: from thukydides (x4e33830e.dyn.telefonica.de [78.51.131.14]) by mail.messagingengine.com (Postfix) with ESMTPA id BA95C244DA for ; Wed, 29 Mar 2017 05:48:02 -0400 (EDT) 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.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org --=-=-= Content-Type: text/plain Hi list, this is a patch to package up qjackctl. Cheers, Mark --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-Add-qjackctl-to-the-audio-packages.patch Content-Description: Patch to add qjackctl >From 93bdb3c4f6b8d74584ec29ea4f6733c373c44ab2 Mon Sep 17 00:00:00 2001 From: Mark Meyer Date: Wed, 29 Mar 2017 10:35:46 +0200 Subject: [PATCH 1/2] Add qjackctl to the audio packages. --- gnu/packages/audio.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 2b11a32ca..d1f360d3d 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -1783,6 +1783,32 @@ buffers, and audio capture.") and ALSA.") (license license:gpl3+))) +(define-public qjackctl + (package + (name "qjackctl") + (version "0.4.4") + (source (origin + (method url-fetch) + (uri (string-append "http://downloads.sourceforge.net/qjackctl/qjackctl-" version ".tar.gz")) + (sha256 + (base32 + "19bbljb3iz5ss4s5fmra1dxabg2fnp61sa51d63zsm56xkvv47ak")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f)) ; no check target + + (inputs + `(("jack-2" ,jack-2) + ("qt" ,qt))) + (native-inputs + `(("pkg-config" ,pkg-config) + ("qttools" ,qttools))) + (home-page "https://qtjackctl.sourceforge.io") + (synopsis "A Jack server control application") + (description "Control a Jack server") + (license license:gpl2+))) + + (define-public raul (package (name "raul") -- 2.12.1 --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0002-Add-a-proper-synopsis.patch Content-Description: add a proper description >From 33b194b92c563c370a41cffa485594fb321f2e14 Mon Sep 17 00:00:00 2001 From: Mark Meyer Date: Wed, 29 Mar 2017 11:41:08 +0200 Subject: [PATCH 2/2] Add a proper synopsis --- gnu/packages/audio.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index d1f360d3d..7ebf68ee3 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -1804,7 +1804,7 @@ and ALSA.") `(("pkg-config" ,pkg-config) ("qttools" ,qttools))) (home-page "https://qtjackctl.sourceforge.io") - (synopsis "A Jack server control application") + (synopsis "A Jack server control application that allows you to plug various sources into various outputs and to start, stop and configure jackd") (description "Control a Jack server") (license license:gpl2+))) -- 2.12.1 --=-=-=--