summaryrefslogtreecommitdiffstats
path: root/pkgs/games/armagetronad
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2015-11-02 15:33:32 +0100
committerDomen Kožar <domen@dev.si>2015-11-02 15:33:32 +0100
commit2d027273836c918c255c73ed959040b8cbc73418 (patch)
tree407b420b0aa84303444bbe8a6cd987825c4608e6 /pkgs/games/armagetronad
parent85dfb151c29d8fe22a819a9d5cbbb48b601e2908 (diff)
fix eval
Diffstat (limited to 'pkgs/games/armagetronad')
-rw-r--r--pkgs/games/armagetronad/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/games/armagetronad/default.nix b/pkgs/games/armagetronad/default.nix
index cbbd963f2eeb..651278b0cf00 100644
--- a/pkgs/games/armagetronad/default.nix
+++ b/pkgs/games/armagetronad/default.nix
@@ -18,10 +18,10 @@ stdenv.mkDerivation {
configureFlags ="--disable-etc";
buildInputs = [SDL SDL_image libxml2 libjpeg mesa zlib];
- meta = {
+ meta = with stdenv.lib; {
homepage = http://armagetronad.org;
description = "An multiplayer networked arcade racing game in 3D similar to Tron";
- license = stdenv.lib.licenses.gpl2;
+ license = licenses.gpl2;
platforms = platforms.linux;
};
}