2021-01-13 00:48:06 +00:00
|
|
|
{ lib, stdenv, fetchurl, libogg, libvorbis, libao, pkg-config, curl
|
|
|
|
, speex, flac
|
|
|
|
, autoreconfHook }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "vorbis-tools";
|
|
|
|
version = "1.4.2";
|
2008-02-11 22:39:54 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-01-13 00:48:06 +00:00
|
|
|
url = "http://downloads.xiph.org/releases/vorbis/vorbis-tools-${version}.tar.gz";
|
|
|
|
sha256 = "1c7h4ivgfdyygz2hyh6nfibxlkz8kdk868a576qkkjgj5gn78xyv";
|
2008-02-11 22:39:54 +00:00
|
|
|
};
|
|
|
|
|
2021-01-13 00:48:06 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2017-09-05 21:26:13 +00:00
|
|
|
buildInputs = [ libogg libvorbis libao curl speex flac ];
|
2008-02-11 22:39:54 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-09-25 09:36:09 +00:00
|
|
|
description = "Extra tools for Ogg-Vorbis audio codec";
|
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.
|
|
|
|
'';
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://xiph.org/vorbis/";
|
2015-09-25 09:36:09 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.all;
|
2008-02-11 22:39:54 +00:00
|
|
|
};
|
|
|
|
}
|
2015-09-25 09:36:09 +00:00
|
|
|
|