Set some meta.platforms

Also fix meta.platform -> meta.platforms in a few places.
This commit is contained in:
Eelco Dolstra
2015-03-20 20:04:42 +01:00
parent 0461f35894
commit 2ed5c2bd6b
45 changed files with 94 additions and 102 deletions
+6 -4
View File
@@ -2,16 +2,18 @@
stdenv.mkDerivation {
name = "rogue-5.4.4";
src = fetchurl {
url = http://rogue.rogueforge.net/files/rogue5.4/rogue5.4.4-src.tar.gz;
sha256 = "18g81274d0f7sr04p7h7irz0d53j6kd9j1y3zbka1gcqq0gscdvx";
};
buildInputs = [ncurses];
buildInputs = [ ncurses ];
meta = {
homepage = http://rogue.rogueforge.net/rogue-5-4/;
description = "The final version of the original Rogue game developed for the UNIX operating system";
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.eelco ];
};
}