nixpkgs-suyu/pkgs/applications/audio/opusfile/default.nix

24 lines
763 B
Nix
Raw Normal View History

2016-01-04 13:25:14 +01:00
{ stdenv, fetchurl, pkgconfig, openssl, libogg, libopus }:
2013-12-07 20:09:08 +01:00
stdenv.mkDerivation rec {
2018-01-28 19:59:03 +01:00
name = "opusfile-0.10";
2013-12-07 20:09:08 +01:00
src = fetchurl {
url = "http://downloads.xiph.org/releases/opus/${name}.tar.gz";
2018-01-28 19:59:03 +01:00
sha256 = "0bs1376sd131qdh7198jp64vv5d17az5wyy4y7srrvw7p8k3bq28";
2013-12-07 20:09:08 +01:00
};
2016-01-04 13:25:14 +01:00
nativeBuildInputs = [ pkgconfig ];
2016-09-13 07:00:39 +02:00
buildInputs = [ openssl libogg ];
propagatedBuildInputs = [ libopus ];
patches = [ ./include-multistream.patch ];
2016-10-13 03:10:42 +02:00
configureFlags = [ "--disable-examples" ];
2013-12-07 20:09:08 +01:00
2017-02-25 20:25:51 +01:00
meta = with stdenv.lib; {
2013-12-07 20:09:08 +01:00
description = "High-level API for decoding and seeking in .opus files";
homepage = http://www.opus-codec.org/;
2017-02-25 20:25:51 +01:00
license = licenses.bsd3;
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ fuuzetsu ];
2013-12-07 20:09:08 +01:00
};
}