about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2017-01-04 13:20:42 -0600
committerMatthew Bauer <mjbauer95@gmail.com>2017-01-17 19:49:05 -0600
commit0ede72738db3f62597d0fc8d4a22b3d33f987c5f (patch)
treeba9d4075faf81b9cabd131322bf06388a05dd9af
parent2c288548b93b657365c27a0132a43ba0080870cc (diff)
downloadnixlib-0ede72738db3f62597d0fc8d4a22b3d33f987c5f.tar
nixlib-0ede72738db3f62597d0fc8d4a22b3d33f987c5f.tar.gz
nixlib-0ede72738db3f62597d0fc8d4a22b3d33f987c5f.tar.bz2
nixlib-0ede72738db3f62597d0fc8d4a22b3d33f987c5f.tar.lz
nixlib-0ede72738db3f62597d0fc8d4a22b3d33f987c5f.tar.xz
nixlib-0ede72738db3f62597d0fc8d4a22b3d33f987c5f.tar.zst
nixlib-0ede72738db3f62597d0fc8d4a22b3d33f987c5f.zip
mplayer: add darwin platform
-rw-r--r--pkgs/applications/video/mplayer/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/video/mplayer/default.nix b/pkgs/applications/video/mplayer/default.nix
index 3a270da21e97..60625412617a 100644
--- a/pkgs/applications/video/mplayer/default.nix
+++ b/pkgs/applications/video/mplayer/default.nix
@@ -199,6 +199,6 @@ stdenv.mkDerivation rec {
     homepage = "http://mplayerhq.hu";
     license = "GPL";
     maintainers = [ stdenv.lib.maintainers.eelco stdenv.lib.maintainers.urkud ];
-    platforms = stdenv.lib.platforms.linux;
+    platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
   };
 }