2008-02-11 23:39:54 +01:00
|
|
|
{stdenv, fetchurl, libogg, libvorbis, libao, pkgconfig, curl, glibc
|
|
|
|
, speex, flac}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2011-04-23 23:58:30 +02:00
|
|
|
name = "vorbis-tools-1.4.0";
|
2008-02-11 23:39:54 +01:00
|
|
|
src = fetchurl {
|
2011-04-23 23:58:30 +02:00
|
|
|
url = http://downloads.xiph.org/releases/vorbis/vorbis-tools-1.4.0.tar.gz;
|
|
|
|
sha256 = "1g12bnh5ah08v529y72kfdz5lhvy75iaz7f9jskyby23m9dkk2d3";
|
2008-02-11 23:39:54 +01:00
|
|
|
};
|
|
|
|
|
2008-02-12 19:15:45 +01:00
|
|
|
buildInputs = [ libogg libvorbis libao pkgconfig curl speex glibc flac ];
|
2008-02-11 23:39:54 +01:00
|
|
|
|
|
|
|
meta = {
|
2009-03-03 14:27:40 +01:00
|
|
|
longDescription = ''
|
|
|
|
A set of command-line tools to manipulate Ogg Vorbis audio
|
|
|
|
files, notably the `ogg123' player and the `oggenc' encoder.
|
|
|
|
'';
|
2008-02-11 23:39:54 +01:00
|
|
|
homepage = http://xiph.org/vorbis/;
|
|
|
|
license = "GPLv2";
|
|
|
|
};
|
|
|
|
}
|