summary refs log tree commit diff
path: root/pkgs/games/privateer
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-08-13 14:25:26 +0200
committerVladimír Čunát <vcunat@gmail.com>2015-08-13 14:27:37 +0200
commitae8b67037e43ed7016fcf6ae1e526c389492b08e (patch)
tree538e0cf97714673162626c0592586322d6c3adfd /pkgs/games/privateer
parent745c60dfaa202a992d77dac4d17461c4827b55ed (diff)
downloadnixpkgs-ae8b67037e43ed7016fcf6ae1e526c389492b08e.tar
nixpkgs-ae8b67037e43ed7016fcf6ae1e526c389492b08e.tar.gz
nixpkgs-ae8b67037e43ed7016fcf6ae1e526c389492b08e.tar.bz2
nixpkgs-ae8b67037e43ed7016fcf6ae1e526c389492b08e.tar.lz
nixpkgs-ae8b67037e43ed7016fcf6ae1e526c389492b08e.tar.xz
nixpkgs-ae8b67037e43ed7016fcf6ae1e526c389492b08e.tar.zst
nixpkgs-ae8b67037e43ed7016fcf6ae1e526c389492b08e.zip
privateer: improve meta, but mark as broken
I didn't succeed to make it build, so I don't push the partial attempt.
Diffstat (limited to 'pkgs/games/privateer')
-rw-r--r--pkgs/games/privateer/default.nix14
1 files changed, 10 insertions, 4 deletions
diff --git a/pkgs/games/privateer/default.nix b/pkgs/games/privateer/default.nix
index bb67f422c9d..2eb3a916eb3 100644
--- a/pkgs/games/privateer/default.nix
+++ b/pkgs/games/privateer/default.nix
@@ -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
   };
 }