2008-02-11 22:39:54 +00:00
|
|
|
{stdenv, fetchurl, libogg, libvorbis, libao, pkgconfig, curl, glibc
|
|
|
|
, speex, flac}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2011-04-23 22:58:30 +01:00
|
|
|
name = "vorbis-tools-1.4.0";
|
2008-02-11 22:39:54 +00:00
|
|
|
src = fetchurl {
|
2011-04-23 22:58:30 +01:00
|
|
|
url = http://downloads.xiph.org/releases/vorbis/vorbis-tools-1.4.0.tar.gz;
|
|
|
|
sha256 = "1g12bnh5ah08v529y72kfdz5lhvy75iaz7f9jskyby23m9dkk2d3";
|
2008-02-11 22:39:54 +00:00
|
|
|
};
|
|
|
|
|
2008-02-12 18:15:45 +00:00
|
|
|
buildInputs = [ libogg libvorbis libao pkgconfig curl speex glibc flac ];
|
2008-02-11 22:39:54 +00:00
|
|
|
|
|
|
|
meta = {
|
2009-03-03 13:27:40 +00: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 22:39:54 +00:00
|
|
|
homepage = http://xiph.org/vorbis/;
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2008-02-11 22:39:54 +00:00
|
|
|
};
|
|
|
|
}
|