tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
warzone2100: fix meta
Vladimír Čunát
11 years ago
c4a35d8c
4a2b6a63
+5
-4
1 changed file
expand all
collapse all
unified
split
pkgs
games
warzone2100
default.nix
+5
-4
pkgs/games/warzone2100/default.nix
···
33
33
34
34
postInstall = []
35
35
++ stdenv.lib.optional withVideos "cp ${sequences_src} $out/share/warzone2100/sequences.wz";
36
36
-
meta = {
36
36
+
37
37
+
meta = with stdenv.lib; {
37
38
description = "A free RTS game, originally developed by Pumpkin Studios";
38
39
longDescription = ''
39
40
Warzone 2100 is an open source real-time strategy and real-time tactics
···
47
48
variety of possible units and tactics.
48
49
'';
49
50
homepage = http://wz2100.net;
50
50
-
license = [ "GPLv2+" ];
51
51
-
maintainers = with stdenv.lib.maintainers; [ astsmtl ];
52
52
-
platforms = with stdenv.lib.platforms; linux;
51
51
+
license = licenses.gpl2Plus;
52
52
+
maintainers = [ maintainers.astsmtl ];
53
53
+
platforms = platforms.linux;
53
54
};
54
55
}