summary refs log tree commit diff
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2022-05-25 18:14:39 +0200
committerGitHub <noreply@github.com>2022-05-25 18:14:39 +0200
commitb87709307eb9a3c7aed9095627b584e2639fce8c (patch)
treec87831aa12a2084e17ac52cbe86b332931062d59
parentdf1f9ecd9b83a1a3cb440d771f644f1a88416bc1 (diff)
parentc17811628972327357e717988c85aeff0a1e95de (diff)
downloadnixpkgs-b87709307eb9a3c7aed9095627b584e2639fce8c.tar
nixpkgs-b87709307eb9a3c7aed9095627b584e2639fce8c.tar.gz
nixpkgs-b87709307eb9a3c7aed9095627b584e2639fce8c.tar.bz2
nixpkgs-b87709307eb9a3c7aed9095627b584e2639fce8c.tar.lz
nixpkgs-b87709307eb9a3c7aed9095627b584e2639fce8c.tar.xz
nixpkgs-b87709307eb9a3c7aed9095627b584e2639fce8c.tar.zst
nixpkgs-b87709307eb9a3c7aed9095627b584e2639fce8c.zip
Merge pull request #174337 from SuperSandro2000/lincity
lincity: mark broken on darwin
-rw-r--r--pkgs/games/lincity/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/games/lincity/default.nix b/pkgs/games/lincity/default.nix
index 389592bfa48..c2ce8f3d82b 100644
--- a/pkgs/games/lincity/default.nix
+++ b/pkgs/games/lincity/default.nix
@@ -35,5 +35,8 @@ stdenv.mkDerivation rec {
     description = "City simulation game";
     license = licenses.gpl2Plus;
     homepage = "https://sourceforge.net/projects/lincity";
+    maintainers = with maintainers; [ ];
+    # ../lcintl.h:14:10: fatal error: 'libintl.h' file not found
+    broken = stdenv.isDarwin;
   };
 }