about summary refs log tree commit diff
path: root/pkgs/development/libraries/libopus
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-04-25 19:41:15 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-04-25 21:27:54 -0700
commit726f1a6edd9c2a23365e243515f5da21f767ed37 (patch)
tree5be1e2173e96a5a151f56cdbd20cf5b8b33e1456 /pkgs/development/libraries/libopus
parent6a931f4127d9b7033b9ae438930dade261899a7e (diff)
downloadnixlib-726f1a6edd9c2a23365e243515f5da21f767ed37.tar
nixlib-726f1a6edd9c2a23365e243515f5da21f767ed37.tar.gz
nixlib-726f1a6edd9c2a23365e243515f5da21f767ed37.tar.bz2
nixlib-726f1a6edd9c2a23365e243515f5da21f767ed37.tar.lz
nixlib-726f1a6edd9c2a23365e243515f5da21f767ed37.tar.xz
nixlib-726f1a6edd9c2a23365e243515f5da21f767ed37.tar.zst
nixlib-726f1a6edd9c2a23365e243515f5da21f767ed37.zip
libopus: Slight refactor
Diffstat (limited to 'pkgs/development/libraries/libopus')
-rw-r--r--pkgs/development/libraries/libopus/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libopus/default.nix b/pkgs/development/libraries/libopus/default.nix
index 557e448e2d49..460aaa2b0eca 100644
--- a/pkgs/development/libraries/libopus/default.nix
+++ b/pkgs/development/libraries/libopus/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, fixedPoint ? false, withCustomModes ? false }:
+{ stdenv, fetchurl, fixedPoint ? false, withCustomModes ? true }:
 
 let
   version = "1.1";
@@ -16,9 +16,11 @@ stdenv.mkDerivation rec {
 
   doCheck = true;
 
-  meta = {
+  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 ];
   };
 }