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

19 lines
564 B
Nix
Raw Normal View History

2013-12-07 20:09:08 +01:00
{stdenv, fetchurl, pkgconfig, openssl, libogg, libopus}:
stdenv.mkDerivation rec {
2014-09-21 20:01:17 +02:00
name = "opusfile-0.6";
2013-12-07 20:09:08 +01:00
src = fetchurl {
url = "http://downloads.xiph.org/releases/opus/${name}.tar.gz";
2014-09-21 20:01:17 +02:00
sha256 = "19iys2kld75k0210b807i4illrdmj3cmmnrgxlc9y4vf6mxp2a14";
2013-12-07 20:09:08 +01:00
};
buildInputs = [ pkgconfig openssl libogg libopus ];
meta = {
description = "High-level API for decoding and seeking in .opus files";
homepage = http://www.opus-codec.org/;
2014-09-21 20:01:17 +02:00
license = stdenv.lib.licenses.bsd3;
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
2013-12-07 20:09:08 +01:00
};
}