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

29 lines
799 B
Nix
Raw Normal View History

2015-04-26 04:41:15 +02:00
{ stdenv, fetchurl, fixedPoint ? false, withCustomModes ? true }:
let
2016-09-10 22:49:58 +02:00
version = "1.1.3";
in
stdenv.mkDerivation rec {
name = "libopus-${version}";
src = fetchurl {
url = "http://downloads.xiph.org/releases/opus/opus-${version}.tar.gz";
2016-09-10 22:49:58 +02:00
sha256 = "0cxnd7pjxbgh6l3cbzsw29phpr5cq28fikfhjlp1hc3y5s0gxdjq";
};
outputs = [ "out" "dev" ];
2015-10-08 11:25:09 +02:00
configureFlags = stdenv.lib.optional fixedPoint "--enable-fixed-point"
++ stdenv.lib.optional withCustomModes "--enable-custom-modes";
doCheck = true;
2015-04-26 04:41:15 +02: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 04:41:15 +02:00
platforms = platforms.unix;
maintainers = with maintainers; [ wkennington ];
};
}