From 4bdeb83cf3cd303cbdb7373663f2148bc7b83806 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Tue, 12 May 2009 04:26:22 +0000 Subject: [PATCH] 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 --- pkgs/applications/audio/audacity/default.nix | 9 ++++++--- 1 file 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";