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
34
postInstall = []
35
++ stdenv.lib.optional withVideos "cp ${sequences_src} $out/share/warzone2100/sequences.wz";
36
-
meta = {
0
37
description = "A free RTS game, originally developed by Pumpkin Studios";
38
longDescription = ''
39
Warzone 2100 is an open source real-time strategy and real-time tactics
···
47
variety of possible units and tactics.
48
'';
49
homepage = http://wz2100.net;
50
-
license = [ "GPLv2+" ];
51
-
maintainers = with stdenv.lib.maintainers; [ astsmtl ];
52
-
platforms = with stdenv.lib.platforms; linux;
53
};
54
}
···
33
34
postInstall = []
35
++ stdenv.lib.optional withVideos "cp ${sequences_src} $out/share/warzone2100/sequences.wz";
36
+
37
+
meta = with stdenv.lib; {
38
description = "A free RTS game, originally developed by Pumpkin Studios";
39
longDescription = ''
40
Warzone 2100 is an open source real-time strategy and real-time tactics
···
48
variety of possible units and tactics.
49
'';
50
homepage = http://wz2100.net;
51
+
license = licenses.gpl2Plus;
52
+
maintainers = [ maintainers.astsmtl ];
53
+
platforms = platforms.linux;
54
};
55
}