summary refs log tree commit diff
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2017-02-25 20:25:51 +0100
committerDaiderd Jordan <daiderd@gmail.com>2017-02-25 20:25:51 +0100
commit5af221e6f33cc2fd727d7936750b8693b35d4484 (patch)
treeca5d1348010c3b986e4f59c94d8d9e67608fd47b /pkgs/applications/audio
parent26a2822cf0ffc286d10c11c6a59c1e2152848d62 (diff)
downloadnixpkgs-5af221e6f33cc2fd727d7936750b8693b35d4484.tar
nixpkgs-5af221e6f33cc2fd727d7936750b8693b35d4484.tar.gz
nixpkgs-5af221e6f33cc2fd727d7936750b8693b35d4484.tar.bz2
nixpkgs-5af221e6f33cc2fd727d7936750b8693b35d4484.tar.lz
nixpkgs-5af221e6f33cc2fd727d7936750b8693b35d4484.tar.xz
nixpkgs-5af221e6f33cc2fd727d7936750b8693b35d4484.tar.zst
nixpkgs-5af221e6f33cc2fd727d7936750b8693b35d4484.zip
opusfile: enable on darwin
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/opusfile/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/audio/opusfile/default.nix b/pkgs/applications/audio/opusfile/default.nix
index f840ba278cf..8a7ab8889a6 100644
--- a/pkgs/applications/audio/opusfile/default.nix
+++ b/pkgs/applications/audio/opusfile/default.nix
@@ -13,11 +13,11 @@ stdenv.mkDerivation rec {
   patches = [ ./include-multistream.patch ];
   configureFlags = [ "--disable-examples" ];
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "High-level API for decoding and seeking in .opus files";
     homepage = http://www.opus-codec.org/;
-    license = stdenv.lib.licenses.bsd3;
-    platforms = stdenv.lib.platforms.linux;
-    maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
+    license = licenses.bsd3;
+    platforms = platforms.linux ++ platforms.darwin;
+    maintainers = with maintainers; [ fuuzetsu ];
   };
 }