summary refs log tree commit diff
path: root/pkgs/applications/audio/audacity/default.nix
blob: 306620ca1c93d6c271172fe7d1cb779e59b348fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, fetchurl, wxGTK, pkgconfig, gettext, gtk, glib, zlib, perl, intltool,
  libogg, libvorbis, libmad, alsaLib, libsndfile, libsamplerate, flac, lame,
  expat, id3lib, ffmpeg, portaudio
  }:

stdenv.mkDerivation rec {
  version = "2.0.2";
  name = "audacity-${version}";

  src = fetchurl {
    url = "http://audacity.googlecode.com/files/audacity-minsrc-${version}.tar.bz2";
    sha256 = "17c7p5jww5zcg2k2fs1751mv5kbadcmgicszi1zxwj2p5b35x2mc";
  };
  buildInputs = [ pkgconfig wxGTK libsndfile expat alsaLib libsamplerate
                  libvorbis libmad flac id3lib ffmpeg gettext ];

  dontDisableStatic = true;

  meta = {
    description = "Sound editor with graphical UI";
    homepage = http://audacity.sourceforge.net;
    license = "GPLv2+";
    platforms = with stdenv.lib.platforms; linux;
  };
}