nixpkgs/pkgs/applications/audio/opus-tools/default.nix

21 lines
643 B
Nix
Raw Normal View History

2013-12-07 19:08:46 +00:00
{stdenv, fetchurl, libogg, libao, pkgconfig, libopus, flac}:
stdenv.mkDerivation rec {
2017-06-20 01:25:43 +00:00
name = "opus-tools-0.1.10";
src = fetchurl {
url = "http://downloads.xiph.org/releases/opus/${name}.tar.gz";
2017-06-20 01:25:43 +00:00
sha256 = "135jfb9ny3xvd27idsxj7j5ns90lslbyrq70cq3bfwcls4r7add2";
};
2017-06-20 01:25:43 +00:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libogg libao libopus flac ];
meta = {
description = "Tools to work with opus encoded audio streams";
homepage = http://www.opus-codec.org/;
2014-09-21 17:59:33 +00:00
license = stdenv.lib.licenses.bsd2;
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
platforms = with stdenv.lib.platforms; unix;
};
}