mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
gnaural: initial package at version 1.0.20110606
http://gnaural.sourceforge.net/
This commit is contained in:
parent
a869c8351c
commit
56855d2e0b
17
pkgs/applications/audio/gnaural/default.nix
Normal file
17
pkgs/applications/audio/gnaural/default.nix
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{ stdenv, fetchurl, pkgconfig, gtk2, libsndfile, portaudio }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "gnaural-1.0.20110606";
|
||||||
|
buildInputs = [ pkgconfig gtk2 libsndfile portaudio ];
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/gnaural/Gnaural/${name}.tar.gz";
|
||||||
|
sha256 = "0p9rasz1jmxf16vnpj17g3vzdjygcyz3l6nmbq6wr402l61f1vy5";
|
||||||
|
};
|
||||||
|
meta = with stdenv.lib;
|
||||||
|
{ description = "Auditory binaural-beat generator";
|
||||||
|
homepage = http://gnaural.sourceforge.net/;
|
||||||
|
licenses = licenses.gpl2;
|
||||||
|
maintainers = [ maintainers.emery ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -1370,6 +1370,8 @@ let
|
|||||||
|
|
||||||
gmvault = callPackage ../tools/networking/gmvault { };
|
gmvault = callPackage ../tools/networking/gmvault { };
|
||||||
|
|
||||||
|
gnaural = callPackage ../applications/audio/gnaural { };
|
||||||
|
|
||||||
gnokii = builderDefsPackage (import ../tools/misc/gnokii) {
|
gnokii = builderDefsPackage (import ../tools/misc/gnokii) {
|
||||||
inherit intltool perl gettext libusb pkgconfig bluez readline pcsclite
|
inherit intltool perl gettext libusb pkgconfig bluez readline pcsclite
|
||||||
libical gtk glib;
|
libical gtk glib;
|
||||||
|
Loading…
Reference in New Issue
Block a user