Allowing abcde to make mp3. I had to add id3v2, and fix the id3lib build.

svn path=/nixpkgs/trunk/; revision=23513
This commit is contained in:
Lluís Batlle i Rossell
2010-08-29 15:53:42 +00:00
parent 89c3aed22e
commit 65e7754f51
4 changed files with 111 additions and 3 deletions
+3 -3
View File
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, libcdio, cddiscid, wget, bash, vorbisTools
{ stdenv, fetchurl, libcdio, cddiscid, wget, bash, vorbisTools, id3v2, lame
, makeWrapper }:
let version = "2.3.99.6";
@@ -40,7 +40,7 @@ in
--replace '#!/bin/bash' '#!${bash}/bin/bash'
wrapProgram "$out/bin/abcde" --prefix PATH ":" \
"$out/bin:${libcdio}/bin:${cddiscid}/bin:${wget}/bin:${vorbisTools}/bin"
"$out/bin:${libcdio}/bin:${cddiscid}/bin:${wget}/bin:${vorbisTools}/bin:${id3v2}/bin:${lame}/bin"
wrapProgram "$out/bin/cddb-tool" --prefix PATH ":" \
"${wget}/bin"
@@ -58,4 +58,4 @@ in
format, and tags them, all in one go.
'';
};
}
}