From unknown Sun Jun 22 04:04:53 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#36669] [PATCH] gnu: Add gnaural. Resent-From: Arun Isaac Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 15 Jul 2019 16:13:04 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 36669 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 36669@debbugs.gnu.org Cc: Arun Isaac X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.156320716529784 (code B ref -1); Mon, 15 Jul 2019 16:13:04 +0000 Received: (at submit) by debbugs.gnu.org; 15 Jul 2019 16:12:45 +0000 Received: from localhost ([127.0.0.1]:48841 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hn3am-0007kF-Dq for submit@debbugs.gnu.org; Mon, 15 Jul 2019 12:12:44 -0400 Received: from lists.gnu.org ([209.51.188.17]:37429) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hn3aZ-0007jh-Jn for submit@debbugs.gnu.org; Mon, 15 Jul 2019 12:12:41 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:57528) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hn3aY-0002dH-7p for guix-patches@gnu.org; Mon, 15 Jul 2019 12:12:31 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hn3aX-00022l-0J for guix-patches@gnu.org; Mon, 15 Jul 2019 12:12:30 -0400 Received: from mugam.systemreboot.net ([139.59.75.54]:43306) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hn3aV-000213-To for guix-patches@gnu.org; Mon, 15 Jul 2019 12:12:28 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=systemreboot.net; s=default; h=Content-Transfer-Encoding:Content-Type: MIME-Version:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=VAwsVi/zLz2mUt2RkhAyrcTfj1j2RllqcqYwoegnUjc=; b=n/WgobCSvOMcgkQob0+AmZJctC sigMEBkrddFCEVMmIlHC8oYOV3QGRnNEEhk7LjlGPovADJjS3rVc5lCI9xLv4skoY1SJlvJVip5Gh 2NpGZuFnejio9NREVdYiozNao7kE5m+Fj2QJ900r6Jshz3mZ0kQsRv0/WTiYE4pDeLe4=; Received: from [49.206.15.108] (helo=steel.lan) by systemreboot.net with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim 4.92) (envelope-from ) id 1hn3aO-0001dF-Pb; Mon, 15 Jul 2019 21:42:20 +0530 From: Arun Isaac Date: Mon, 15 Jul 2019 21:42:12 +0530 Message-Id: <20190715161212.8087-1-arunisaac@systemreboot.net> X-Mailer: git-send-email 2.22.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 139.59.75.54 X-Spam-Score: -1.4 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) * gnu/packages/audio.scm (gnaural): New variable. --- gnu/packages/audio.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 3168a97414..86967beb64 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -21,6 +21,7 @@ ;;; Copyright © 2019 Pierre Langlois ;;; Copyright © 2019 Leo Famulari ;;; Copyright © 2019 Rutger Helling +;;; Copyright © 2019 Arun Isaac ;;; ;;; This file is part of GNU Guix. ;;; @@ -3723,3 +3724,32 @@ library.") (description "FAudio is an XAudio reimplementation that focuses solely on developing fully accurate DirectX Audio runtime libraries.") (license license:zlib))) + +(define-public gnaural + (package + (name "gnaural") + (version "20110606") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/gnaural/Gnaural/gnaural_" + version ".tar.xz")) + (sha256 + (base32 + "1gq519c0imsh57zklyi0f8h64l3ai48lh672c834470z8c6kvbfi")))) + (build-system gnu-build-system) + (inputs + `(("alsa-lib" ,alsa-lib) + ("gtk+" ,gtk+-2) + ("libsndfile" ,libsndfile) + ("portaudio" ,portaudio))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (home-page "http://gnaural.sourceforge.net/") + (synopsis "Binaural beat synthesizer") + (description "Gnaural is a programmable auditory binaural beat synthesizer +intended to be used for brainwave entrainment. Gnaural supports creation of +binaural beat tracks of different frequencies and exporting of tracks into +different audio formats. Gnaural can also be linked over the internet with +other Gnaural instances, allowing synchronous sessions between many users.") + (license license:gpl2+))) -- 2.22.0 From unknown Sun Jun 22 04:04:53 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#36669] [PATCH] gnu: Add gnaural. Resent-From: Marius Bakke Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 16 Jul 2019 17:19:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 36669 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Arun Isaac , 36669@debbugs.gnu.org Received: via spool by 36669-submit@debbugs.gnu.org id=B36669.156329750428099 (code B ref 36669); Tue, 16 Jul 2019 17:19:02 +0000 Received: (at 36669) by debbugs.gnu.org; 16 Jul 2019 17:18:24 +0000 Received: from localhost ([127.0.0.1]:51086 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hnR5s-0007J8-F2 for submit@debbugs.gnu.org; Tue, 16 Jul 2019 13:18:24 -0400 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:51021) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hnR5q-0007Im-LH for 36669@debbugs.gnu.org; Tue, 16 Jul 2019 13:18:23 -0400 Received: from compute5.internal (compute5.nyi.internal [10.202.2.45]) by mailout.nyi.internal (Postfix) with ESMTP id 697F62208A; Tue, 16 Jul 2019 13:18:16 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute5.internal (MEProxy); Tue, 16 Jul 2019 13:18:16 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fastmail.com; h= from:to:subject:in-reply-to:references:date:message-id :mime-version:content-type; s=fm3; bh=cbBIFuwK7UWzFNBK4+vcmojMfM jOWWvaZDDkSisyED4=; b=gXEZYWy8+hQbhN3fADF+dZHR+dH5yu4XnNxxlpeEcL FUpqo6NvflmeMjgHWi3oTZCxjR4gHPh8JQBk/T18k8xQPl8cTvffrs6HAmLbahGS D+/GsVhbtaIZBlKQI7Ljb/jDgdwz2wM/LIvTr7KkABsRSQg/twxtHBQaUw9rwOCm VNLzS99QOIqUZaYeluXbj3XyphKwVSrutg8mA70Ouy5Qf4mvzgYNk9typ+LDfSsX k+KXGWQZ4lovsKYY4uhwdrwx+78iikkotqFYV/bP/Jds/RetqqcnMk480DnMZgBi 49UaJ3R8dpH7P8+SlOcLVueQwsH/a7FRfywvnHaIKxFg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm3; bh=cbBIFu wK7UWzFNBK4+vcmojMfMjOWWvaZDDkSisyED4=; b=TX292OsU3zoZQcgCty6YT8 Eg1NazRQxwZ8sUlk/6FSUWmkqbvfD1uUhArRUW9iRceCfoYeIDiDCM52xerm+ccb GnTjbIPZzcvU6UU7QKz03pvTQXEEcnPJZ85BtVNqqslVMp8qXrXi/0/CX2qeL+jS jTX++QXDsKiQVo/R21mz2aTRZy64zwSd5pTKMJjMR6tOZNjdinPUOH3dusMcVtrW M4BOJvnarXWB2FrHsuI4G3SddouyC/5DSZ4ONqWq6WO8bogv/SQAy80d03Q3mBsS m1ZI2xs/GpT6CUdZhrrFpmFyGOzCKmteN7d4r/hCa7SOcZtUc8hH0nRLVcbx4KnA == X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeduvddriedtgdduudehucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne cujfgurhephffvufgjfhgffffkgggtsehgtderredtredtnecuhfhrohhmpeforghrihhu shcuuegrkhhkvgcuoehmsggrkhhkvgesfhgrshhtmhgrihhlrdgtohhmqeenucfkphepie dvrdduiedrvddviedrudegtdenucfrrghrrghmpehmrghilhhfrhhomhepmhgsrghkkhgv sehfrghsthhmrghilhdrtghomhenucevlhhushhtvghrufhiiigvpedt X-ME-Proxy: Received: from localhost (140.226.16.62.customer.cdi.no [62.16.226.140]) by mail.messagingengine.com (Postfix) with ESMTPA id 7DE5180064; Tue, 16 Jul 2019 13:18:15 -0400 (EDT) From: Marius Bakke In-Reply-To: <20190715161212.8087-1-arunisaac@systemreboot.net> References: <20190715161212.8087-1-arunisaac@systemreboot.net> User-Agent: Notmuch/0.29.1 (https://notmuchmail.org) Emacs/26.2 (x86_64-pc-linux-gnu) Date: Tue, 16 Jul 2019 19:18:13 +0200 Message-ID: <87lfwx6gq2.fsf@devup.no> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.7 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) --=-=-= Content-Type: text/plain Arun Isaac writes: > * gnu/packages/audio.scm (gnaural): New variable. LGTM. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEu7At3yzq9qgNHeZDoqBt8qM6VPoFAl0uBtUACgkQoqBt8qM6 VPp8Zgf/XhgTWwaU2BsjKNY5NOHJY4LPbt0D9qWtsOZnY1r4P1jJEqDpyQ+l5/vN 87zC/8E42Q6m753lEqw/bowiFunALqivyS9o81gFUW5ZDhXdC+WKWl1+ZXLEm0KA qxQOJqs26onrbV9kI+7NXwbJI17tFfWnxeYAUoy0tLawdyVVoZfzCtfrOPTE/EUx JQaF3i1p1It5087WlB8/lZI3S7FyBxeo3Y7XniwDfAPGWuA0vVaqL3d4PgUp7xZZ GMQRMjlmGAD+4xWfLyqKywDHb8Z0ed3Iw7YGvWSEev0oKG/IhhsEG4ln2mdSNpg+ Qd1ktz0VppIFt6rGKCjZpVCw5K/FdQ== =EstR -----END PGP SIGNATURE----- --=-=-=-- From unknown Sun Jun 22 04:04:53 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Arun Isaac Subject: bug#36669: closed (Re: [bug#36669] [PATCH] gnu: Add gnaural.) Message-ID: References: <20190715161212.8087-1-arunisaac@systemreboot.net> X-Gnu-PR-Message: they-closed 36669 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 36669@debbugs.gnu.org Date: Wed, 17 Jul 2019 07:43:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1563349382-20199-1" This is a multi-part message in MIME format... ------------=_1563349382-20199-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #36669: [PATCH] gnu: Add gnaural. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 36669@debbugs.gnu.org. --=20 36669: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D36669 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1563349382-20199-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 36669-done) by debbugs.gnu.org; 17 Jul 2019 07:42:09 +0000 Received: from localhost ([127.0.0.1]:51466 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hneZk-0005EM-Ha for submit@debbugs.gnu.org; Wed, 17 Jul 2019 03:42:09 -0400 Received: from mugam.systemreboot.net ([139.59.75.54]:53996) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hneZg-0005E9-It for 36669-done@debbugs.gnu.org; Wed, 17 Jul 2019 03:42:07 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=systemreboot.net; s=default; h=Content-Type:MIME-Version:Message-ID:Date: References:In-Reply-To:Subject:To:From:Sender:Reply-To:Cc: Content-Transfer-Encoding:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=JX0ff7XX1CtD8P/nYR4BybIRtvIuZGopIw+IjxN3voo=; b=JBOD+aApUo1GHS7rvBPJEncSl R7N0y5p9I3tH/l0W+OawAX7Y+nLu8PM4Cm0G71ZuFcE14gKguKL84wEFNZqzLpywaJCz5xCsJ8pEZ ybWHl+e7TXjcBsQT2oPaHr7iDOZzA04neE7KRcrgAyrkx9tZAneNMRYNw0DIK4C1TJpPo=; Received: from [14.139.128.10] (helo=steel) by systemreboot.net with esmtpsa (TLSv1.3:TLS_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1hneZc-00074x-Fd; Wed, 17 Jul 2019 13:12:00 +0530 From: Arun Isaac To: Marius Bakke , 36669-done@debbugs.gnu.org Subject: Re: [bug#36669] [PATCH] gnu: Add gnaural. In-Reply-To: <87lfwx6gq2.fsf@devup.no> References: <20190715161212.8087-1-arunisaac@systemreboot.net> <87lfwx6gq2.fsf@devup.no> Date: Wed, 17 Jul 2019 13:11:48 +0530 Message-ID: MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 36669-done X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --=-=-= Content-Type: text/plain Thanks for the review, pushed to master! --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEf3MDQ/Lwnzx3v3nTLiXui2GAK7MFAl0u0TwACgkQLiXui2GA K7PiTgf/UiJoCo5NBljl51NAA+ZvD6FQYDK4nZa4CS+jejBh/6jwpG79B7uz9ClM R4sQka2lOvlZdFpZGIc0D06M5n778SBOjTornQYulgYc7kz1FDwUP3LI4LGtIW4o vR/W7pd48dAJRFJMoWakiW52h2P2yF03f1Nyhwqt83IwfIq75tmXXl1W+qbjHxAP LnxffffwI3PUpdSpFfGLzuP5CEuqvsum1P8xnR802PIj8sp7qcUNdqjrQ4o+svKU urjZRpYTdJMVXSoutzlDmhEo8VU0CqXEF7Cvxod04nOjOApx4R4UIuQS2kTi6HvP +ElA/0WWzqREFcIJMBlLJDc4MmC7fQ== =zUcD -----END PGP SIGNATURE----- --=-=-=-- ------------=_1563349382-20199-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 15 Jul 2019 16:12:45 +0000 Received: from localhost ([127.0.0.1]:48841 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hn3am-0007kF-Dq for submit@debbugs.gnu.org; Mon, 15 Jul 2019 12:12:44 -0400 Received: from lists.gnu.org ([209.51.188.17]:37429) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hn3aZ-0007jh-Jn for submit@debbugs.gnu.org; Mon, 15 Jul 2019 12:12:41 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:57528) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hn3aY-0002dH-7p for guix-patches@gnu.org; Mon, 15 Jul 2019 12:12:31 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hn3aX-00022l-0J for guix-patches@gnu.org; Mon, 15 Jul 2019 12:12:30 -0400 Received: from mugam.systemreboot.net ([139.59.75.54]:43306) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hn3aV-000213-To for guix-patches@gnu.org; Mon, 15 Jul 2019 12:12:28 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=systemreboot.net; s=default; h=Content-Transfer-Encoding:Content-Type: MIME-Version:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=VAwsVi/zLz2mUt2RkhAyrcTfj1j2RllqcqYwoegnUjc=; b=n/WgobCSvOMcgkQob0+AmZJctC sigMEBkrddFCEVMmIlHC8oYOV3QGRnNEEhk7LjlGPovADJjS3rVc5lCI9xLv4skoY1SJlvJVip5Gh 2NpGZuFnejio9NREVdYiozNao7kE5m+Fj2QJ900r6Jshz3mZ0kQsRv0/WTiYE4pDeLe4=; Received: from [49.206.15.108] (helo=steel.lan) by systemreboot.net with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim 4.92) (envelope-from ) id 1hn3aO-0001dF-Pb; Mon, 15 Jul 2019 21:42:20 +0530 From: Arun Isaac To: guix-patches@gnu.org Subject: [PATCH] gnu: Add gnaural. Date: Mon, 15 Jul 2019 21:42:12 +0530 Message-Id: <20190715161212.8087-1-arunisaac@systemreboot.net> X-Mailer: git-send-email 2.22.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 139.59.75.54 X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: Arun Isaac X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) * gnu/packages/audio.scm (gnaural): New variable. --- gnu/packages/audio.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 3168a97414..86967beb64 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -21,6 +21,7 @@ ;;; Copyright © 2019 Pierre Langlois ;;; Copyright © 2019 Leo Famulari ;;; Copyright © 2019 Rutger Helling +;;; Copyright © 2019 Arun Isaac ;;; ;;; This file is part of GNU Guix. ;;; @@ -3723,3 +3724,32 @@ library.") (description "FAudio is an XAudio reimplementation that focuses solely on developing fully accurate DirectX Audio runtime libraries.") (license license:zlib))) + +(define-public gnaural + (package + (name "gnaural") + (version "20110606") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/gnaural/Gnaural/gnaural_" + version ".tar.xz")) + (sha256 + (base32 + "1gq519c0imsh57zklyi0f8h64l3ai48lh672c834470z8c6kvbfi")))) + (build-system gnu-build-system) + (inputs + `(("alsa-lib" ,alsa-lib) + ("gtk+" ,gtk+-2) + ("libsndfile" ,libsndfile) + ("portaudio" ,portaudio))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (home-page "http://gnaural.sourceforge.net/") + (synopsis "Binaural beat synthesizer") + (description "Gnaural is a programmable auditory binaural beat synthesizer +intended to be used for brainwave entrainment. Gnaural supports creation of +binaural beat tracks of different frequencies and exporting of tracks into +different audio formats. Gnaural can also be linked over the internet with +other Gnaural instances, allowing synchronous sessions between many users.") + (license license:gpl2+))) -- 2.22.0 ------------=_1563349382-20199-1--