nixpkgs/pkgs/development/libraries/libopus/default.nix
Lluís Batlle i Rossell 664ee28936 Adding libopus
I still don't know any program that can use it.
2012-09-25 20:01:56 +02:00

19 lines
496 B
Nix

{ stdenv, fetchurl, fixedPoint ? false }:
stdenv.mkDerivation rec {
name = "libopus-1.0.1";
src = fetchurl {
url = "http://downloads.xiph.org/releases/opus/opus-1.0.1.tar.gz";
sha256 = "1vs133z6c03xi1a7b8bkqxlb6ipwchawwb52z1lgvh1amwy5ryl0";
};
configureFlags = stdenv.lib.optionalString fixedPoint "--enable-fixed-point";
meta = {
description = "Open, royalty-free, highly versatile audio codec";
license = "BSD";
homepage = http://www.opus-codec.org/;
};
}