nixpkgs/pkgs/development/libraries/libopus/default.nix

30 lines
812 B
Nix
Raw Normal View History

{ stdenv, fetchurl, fetchpatch
, fixedPoint ? false, withCustomModes ? true }:
let
version = "1.1.5";
in
stdenv.mkDerivation rec {
name = "libopus-${version}";
src = fetchurl {
url = "http://downloads.xiph.org/releases/opus/opus-${version}.tar.gz";
sha256 = "1r33nm7b052dw7gsc99809df1zmj5icfiljqbrfkw2pll0f9i17b";
};
outputs = [ "out" "dev" ];
2015-10-08 09:25:09 +00:00
configureFlags = stdenv.lib.optional fixedPoint "--enable-fixed-point"
++ stdenv.lib.optional withCustomModes "--enable-custom-modes";
doCheck = true;
2015-04-26 02:41:15 +00:00
meta = with stdenv.lib; {
description = "Open, royalty-free, highly versatile audio codec";
license = stdenv.lib.licenses.bsd3;
homepage = http://www.opus-codec.org/;
2015-04-26 02:41:15 +00:00
platforms = platforms.unix;
maintainers = with maintainers; [ wkennington ];
};
}