summary refs log tree commit diff
path: root/pkgs/games/redeclipse
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2019-07-02 20:31:38 -0700
committerLassulus <github@lassul.us>2019-07-03 07:09:14 +0200
commitbb7a367fed1e1b99b7d3bb276076a760db6fc708 (patch)
tree5e738923f05a7d24be243e57989bbd801b5d56bd /pkgs/games/redeclipse
parent19de85d8186095765cac8c53fb091f7cadcc272e (diff)
downloadnixpkgs-bb7a367fed1e1b99b7d3bb276076a760db6fc708.tar
nixpkgs-bb7a367fed1e1b99b7d3bb276076a760db6fc708.tar.gz
nixpkgs-bb7a367fed1e1b99b7d3bb276076a760db6fc708.tar.bz2
nixpkgs-bb7a367fed1e1b99b7d3bb276076a760db6fc708.tar.lz
nixpkgs-bb7a367fed1e1b99b7d3bb276076a760db6fc708.tar.xz
nixpkgs-bb7a367fed1e1b99b7d3bb276076a760db6fc708.tar.zst
nixpkgs-bb7a367fed1e1b99b7d3bb276076a760db6fc708.zip
redeclipse: fix license info
Diffstat (limited to 'pkgs/games/redeclipse')
-rw-r--r--pkgs/games/redeclipse/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/games/redeclipse/default.nix b/pkgs/games/redeclipse/default.nix
index 2825c184bc5..fe8fb5243b8 100644
--- a/pkgs/games/redeclipse/default.nix
+++ b/pkgs/games/redeclipse/default.nix
@@ -40,7 +40,7 @@ stdenv.mkDerivation rec {
       cp -R -t $out/share/redeclipse/data/ data/*
   '';
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "A first person arena shooter, featuring parkour, impulse boosts, and more.";
     longDescription = ''
       Red Eclipse is a fun-filled new take on the first person arena shooter,
@@ -48,10 +48,10 @@ stdenv.mkDerivation rec {
       toward balanced gameplay, with a general theme of agility in a variety of
       environments.
     '';
-    homepage = https://www.redeclipse.net;
-    license = with stdenv.lib.licenses; [ zlib cc-by-sa-30 ];
-    maintainers = with stdenv.lib.maintainers; [ lambda-11235 ];
-    platforms = stdenv.lib.platforms.linux;
+    homepage = "https://www.redeclipse.net";
+    license = with licenses; [ licenses.zlib cc-by-sa-30 ];
+    maintainers = with maintainers; [ lambda-11235 ];
+    platforms = platforms.linux;
     hydraPlatforms = [];
   };
 }