summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2009-05-12 04:26:22 +0000
committerMichael Raskin <7c6f434c@mail.ru>2009-05-12 04:26:22 +0000
commit4bdeb83cf3cd303cbdb7373663f2148bc7b83806 (patch)
treebf31d7b4da342a5341069a5e5533c4926702d529 /pkgs
parentf9f56062c1f5ab27dff2358f8c069222d4f20e76 (diff)
downloadnixpkgs-4bdeb83cf3cd303cbdb7373663f2148bc7b83806.tar
nixpkgs-4bdeb83cf3cd303cbdb7373663f2148bc7b83806.tar.gz
nixpkgs-4bdeb83cf3cd303cbdb7373663f2148bc7b83806.tar.bz2
nixpkgs-4bdeb83cf3cd303cbdb7373663f2148bc7b83806.tar.lz
nixpkgs-4bdeb83cf3cd303cbdb7373663f2148bc7b83806.tar.xz
nixpkgs-4bdeb83cf3cd303cbdb7373663f2148bc7b83806.tar.zst
nixpkgs-4bdeb83cf3cd303cbdb7373663f2148bc7b83806.zip
Reduced number of build errors in audacity. Still fails in the end complaining on not building part of itself
svn path=/nixpkgs/trunk/; revision=15558
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/audio/audacity/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/applications/audio/audacity/default.nix b/pkgs/applications/audio/audacity/default.nix
index e4a3874de41..8d72402866f 100644
--- a/pkgs/applications/audio/audacity/default.nix
+++ b/pkgs/applications/audio/audacity/default.nix
@@ -1,4 +1,6 @@
-{ stdenv, fetchurl, wxGTK, pkgconfig, gettext, gtk, glib, zlib }:
+{ stdenv, fetchurl, wxGTK, pkgconfig, gettext, gtk, glib, zlib, perl, intltool,
+  libogg, libvorbis, libmad
+  }:
 
 stdenv.mkDerivation {
   name = "audacity-1.3.7";
@@ -7,9 +9,10 @@ stdenv.mkDerivation {
 
   src = fetchurl {
     url = mirror://sourceforge/audacity/audacity-fullsrc-1.3.7.tar.bz2;
-    sha256 = "1kashc6cc6d5g6i59nqcrl795x1jqdh0lpg3msa1wckfj3hpljmy";
+    sha256 = "0b4arafpdyjjk52l6n7aw518hzm65iv9w5g39jqr2bmvn6a9qivi";
   };
-  buildInputs = [ wxGTK pkgconfig gettext gtk glib zlib ];
+  buildInputs = [ wxGTK pkgconfig gettext gtk glib zlib intltool perl 
+    libogg libvorbis libmad];
 
   meta = {
     description = "Sound editor with graphical UI";