summary refs log tree commit diff
path: root/pkgs/games/multimc
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2016-11-20 18:05:18 +0100
committerPascal Wittmann <mail@pascal-wittmann.de>2016-11-20 18:06:03 +0100
commitf7e0bc2ae7333c29f3d0c7120f65297d491b63e9 (patch)
treeafad01cd2ebe757bc65f27363d90a198e9f93815 /pkgs/games/multimc
parent9c5a9f32c6b6bec467e8a963456a21174d47e55e (diff)
Make all meta.maintainers attributes lists
Diffstat (limited to 'pkgs/games/multimc')
-rw-r--r--pkgs/games/multimc/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/games/multimc/default.nix b/pkgs/games/multimc/default.nix
index 2e528a8203fe1..00d4fbf84511f 100644
--- a/pkgs/games/multimc/default.nix
+++ b/pkgs/games/multimc/default.nix
@@ -40,19 +40,19 @@ stdenv.mkDerivation {
 
     mkdir -pv $out/bin/jars $out/lib
     cp -v MultiMC $out/bin/
-    cp -v jars/*.jar $out/bin/jars/
+    cp -v jars/*.jar $out/bin/jars/ #*/
     cp -v librainbow.so libnbt++.so libMultiMC_logic.so $out/lib
     wrapProgram $out/bin/MultiMC --add-flags "-d \$HOME/.multimc/" --set GAME_LIBRARY_PATH $RESULT --prefix PATH : ${jdk7}/bin/
   '';
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = https://multimc.org/;
     description = "A free, open source launcher for Minecraft";
     longDescription = ''
       Allows you to have multiple, separate instances of Minecraft (each with their own mods, texture packs, saves, etc) and helps you manage them and their associated options with a simple interface.
     '';
-    platforms = stdenv.lib.platforms.linux;
-    license = stdenv.lib.licenses.lgpl21Plus;
-    maintainers = stdenv.lib.maintainers.cleverca22;
+    platforms = platforms.linux;
+    license = licenses.lgpl21Plus;
+    maintainers = [ maintainers.cleverca22 ];
   };
 }