summary refs log tree commit diff
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2007-11-08 14:34:54 +0000
committerMichael Raskin <7c6f434c@mail.ru>2007-11-08 14:34:54 +0000
commita8db1746a5231dbb09a4d44f7c27a9ae13e59785 (patch)
treec8b6b64e29b440527f35dfb5362d234afcf3cae0 /pkgs/applications/audio
parent2a8bb1725d810ba08d9d493d8f2a6aee0f95a8ab (diff)
downloadnixpkgs-a8db1746a5231dbb09a4d44f7c27a9ae13e59785.tar
nixpkgs-a8db1746a5231dbb09a4d44f7c27a9ae13e59785.tar.gz
nixpkgs-a8db1746a5231dbb09a4d44f7c27a9ae13e59785.tar.bz2
nixpkgs-a8db1746a5231dbb09a4d44f7c27a9ae13e59785.tar.lz
nixpkgs-a8db1746a5231dbb09a4d44f7c27a9ae13e59785.tar.xz
nixpkgs-a8db1746a5231dbb09a4d44f7c27a9ae13e59785.tar.zst
nixpkgs-a8db1746a5231dbb09a4d44f7c27a9ae13e59785.zip
Fixed log nesting; added Qi.
svn path=/nixpkgs/trunk/; revision=9601
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/audacity/default.nix1
-rw-r--r--pkgs/applications/audio/ladspa-plugins/default.nix1
-rw-r--r--pkgs/applications/audio/ladspa-plugins/ladspah.nix1
-rw-r--r--pkgs/applications/audio/snd/default.nix1
4 files changed, 0 insertions, 4 deletions
diff --git a/pkgs/applications/audio/audacity/default.nix b/pkgs/applications/audio/audacity/default.nix
index b8c28a0e22e..56ee6a56ccb 100644
--- a/pkgs/applications/audio/audacity/default.nix
+++ b/pkgs/applications/audio/audacity/default.nix
@@ -9,7 +9,6 @@ args: with args;
   	buildInputs =[(wxGTK null) libogg libvorbis libsndfile libmad pkgconfig gtk 
 		gettext glib];
 	} null);
-	with stringsWithDeps; 
 let 
 	postInstall = FullDepEntry ("
 		old_rpath=$(patchelf --print-rpath \$out/bin/audacity);
diff --git a/pkgs/applications/audio/ladspa-plugins/default.nix b/pkgs/applications/audio/ladspa-plugins/default.nix
index 12722356d85..9a033a42b87 100644
--- a/pkgs/applications/audio/ladspa-plugins/default.nix
+++ b/pkgs/applications/audio/ladspa-plugins/default.nix
@@ -8,7 +8,6 @@ args: with args;
 		buildInputs = [fftw ladspaH pkgconfig];
 		configureFlags = [];
 	} null);
-	with stringsWithDeps;
 let
 	postInstall = FullDepEntry ("
 		ensureDir \$out/share/ladspa/
diff --git a/pkgs/applications/audio/ladspa-plugins/ladspah.nix b/pkgs/applications/audio/ladspa-plugins/ladspah.nix
index 5ab77db3a2c..b526e48b10e 100644
--- a/pkgs/applications/audio/ladspa-plugins/ladspah.nix
+++ b/pkgs/applications/audio/ladspa-plugins/ladspah.nix
@@ -1,5 +1,4 @@
 args: with args;
-	with stringsWithDeps;
 let 
 	src = 
 	fetchurl {
diff --git a/pkgs/applications/audio/snd/default.nix b/pkgs/applications/audio/snd/default.nix
index 142baf9dba3..9a650570a6d 100644
--- a/pkgs/applications/audio/snd/default.nix
+++ b/pkgs/applications/audio/snd/default.nix
@@ -20,7 +20,6 @@ args : with args;
 			++ (lib.optional (args ? sndlib) "--with-midi" )
 			;
 	} null; /* null is a terminator for sumArgs */
-	with stringsWithDeps;
 	let preBuild = FullDepEntry ("
 		cp config.log /tmp/snd-config.log
 	") [minInit doUnpack];