about summary refs log tree commit diff
path: root/pkgs/applications/video
diff options
context:
space:
mode:
authorSong Wenwu <iyzsong@gmail.com>2013-06-23 21:26:43 +0800
committerSong Wenwu <iyzsong@gmail.com>2013-06-23 21:26:43 +0800
commit4cad420d5c7693737c39e0575ccc0e9e5ac05dc7 (patch)
tree0f6cca175da5426a7485080c9aeb75423ec717a2 /pkgs/applications/video
parent48e1e1cae649231b533c03a4f8ebda59b2c6424f (diff)
downloadnixlib-4cad420d5c7693737c39e0575ccc0e9e5ac05dc7.tar
nixlib-4cad420d5c7693737c39e0575ccc0e9e5ac05dc7.tar.gz
nixlib-4cad420d5c7693737c39e0575ccc0e9e5ac05dc7.tar.bz2
nixlib-4cad420d5c7693737c39e0575ccc0e9e5ac05dc7.tar.lz
nixlib-4cad420d5c7693737c39e0575ccc0e9e5ac05dc7.tar.xz
nixlib-4cad420d5c7693737c39e0575ccc0e9e5ac05dc7.tar.zst
nixlib-4cad420d5c7693737c39e0575ccc0e9e5ac05dc7.zip
smplayer: add platform and set license to `stdenv.lib.licenses.gpl3Plus`
Diffstat (limited to 'pkgs/applications/video')
-rw-r--r--pkgs/applications/video/smplayer/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/video/smplayer/default.nix b/pkgs/applications/video/smplayer/default.nix
index 21be1fdb74a6..ab48d74c00da 100644
--- a/pkgs/applications/video/smplayer/default.nix
+++ b/pkgs/applications/video/smplayer/default.nix
@@ -17,6 +17,7 @@ stdenv.mkDerivation rec {
   meta = {
     description = "A complete front-end for MPlayer";
     homepage = "http://smplayer.sourceforge.net/";
-    license = "GPLv3+";
+    license = stdenv.lib.licenses.gpl3Plus;
+    platforms = stdenv.lib.platforms.linux;
   };
 }