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

21 lines
656 B
Nix
Raw Normal View History

2018-12-07 14:38:04 +00:00
{stdenv, fetchurl, libogg, libao, pkgconfig, flac, opusfile, libopusenc}:
stdenv.mkDerivation rec {
2018-12-07 14:38:04 +00:00
name = "opus-tools-0.2";
src = fetchurl {
url = "http://downloads.xiph.org/releases/opus/${name}.tar.gz";
2018-12-07 14:38:04 +00:00
sha256 = "11pzl27s4vcz4m18ch72nivbhww2zmzn56wspb7rll1y1nq6rrdl";
};
2017-06-20 02:25:43 +01:00
nativeBuildInputs = [ pkgconfig ];
2018-12-07 14:38:04 +00:00
buildInputs = [ libogg libao flac opusfile libopusenc ];
meta = {
description = "Tools to work with opus encoded audio streams";
homepage = http://www.opus-codec.org/;
2014-09-21 18:59:33 +01:00
license = stdenv.lib.licenses.bsd2;
maintainers = with stdenv.lib.maintainers; [ ];
platforms = with stdenv.lib.platforms; unix;
};
}