summary refs log tree commit diff
path: root/pkgs/applications/audio/gnaural/default.nix
blob: 93abad7aa77fffb8fadb11f8630f11dc843d75a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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/;
      license = licenses.gpl2;
      maintainers = [ maintainers.emery ];
      platforms = platforms.linux;
    };
}