about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libopus
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/libopus')
-rw-r--r--nixpkgs/pkgs/development/libraries/libopus/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/libopus/default.nix b/nixpkgs/pkgs/development/libraries/libopus/default.nix
new file mode 100644
index 000000000000..30fa7d749a12
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/libopus/default.nix
@@ -0,0 +1,29 @@
+{ stdenv, fetchurl
+, fixedPoint ? false, withCustomModes ? true }:
+
+let
+  version = "1.3";
+in
+stdenv.mkDerivation rec {
+  name = "libopus-${version}";
+
+  src = fetchurl {
+    url = "https://archive.mozilla.org/pub/opus/opus-${version}.tar.gz";
+    sha256 = "0l651n19h0vhc0sn6w2c95hgqks1i8m4b3j04ncaznzjznp6jgag";
+  };
+
+  outputs = [ "out" "dev" ];
+
+  configureFlags = stdenv.lib.optional fixedPoint "--enable-fixed-point"
+                ++ stdenv.lib.optional withCustomModes "--enable-custom-modes";
+
+  doCheck = true;
+
+  meta = with stdenv.lib; {
+    description = "Open, royalty-free, highly versatile audio codec";
+    license = stdenv.lib.licenses.bsd3;
+    homepage = http://www.opus-codec.org/;
+    platforms = platforms.unix;
+    maintainers = with maintainers; [ wkennington ];
+  };
+}