privateer: improve meta, but mark as broken

I didn't succeed to make it build, so I don't push the partial attempt.
This commit is contained in:
Vladimír Čunát 2015-08-13 14:25:26 +02:00
parent 745c60dfaa
commit ae8b67037e

View File

@ -28,10 +28,16 @@ stdenv.mkDerivation {
cp vegastrike $out/bin
cp vegaserver $out/bin
'';
meta = {
meta = with stdenv.lib; {
homepage = http://privateer.sourceforge.net/;
longDescription = "";
maintainers = with stdenv.lib.maintainers; [ chaoflow ];
description = "Adventure space flight simulation computer game";
license = licenses.gpl2Plus; # and a special license for art data
# https://sourceforge.net/p/privateer/code/HEAD/tree/privgold/trunk/data/art-license.txt
maintainers = with maintainers; [ chaoflow ];
platforms = with platforms; linux ++ darwin;
hydraPlatforms = [];
broken = true; # it won't build
};
}