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

30 lines
812 B
Nix
Raw Normal View History

{ stdenv, fetchurl, fetchpatch
, fixedPoint ? false, withCustomModes ? true }:
let
2017-05-21 18:19:24 +01:00
version = "1.1.4";
in
stdenv.mkDerivation rec {
name = "libopus-${version}";
src = fetchurl {
url = "http://downloads.xiph.org/releases/opus/opus-${version}.tar.gz";
2017-05-21 18:19:24 +01:00
sha256 = "14l6kpapmcnvl7p9hrmbqcnzj13zfzyppyc9a5kd4788h2rvc8li";
};
outputs = [ "out" "dev" ];
2015-10-08 10:25:09 +01:00
configureFlags = stdenv.lib.optional fixedPoint "--enable-fixed-point"
++ stdenv.lib.optional withCustomModes "--enable-custom-modes";
doCheck = true;
2015-04-26 03:41:15 +01: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 03:41:15 +01:00
platforms = platforms.unix;
maintainers = with maintainers; [ wkennington ];
};
}