about summary refs log tree commit diff
path: root/pkgs/games/lincity
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2016-02-12 15:59:08 +0000
committerRobin Gloster <mail@glob.in>2016-02-12 15:59:08 +0000
commit242b8aba7c1b75130214f6dd93f6b057ee6efe26 (patch)
tree0c78b8b5864bd2aaf0c99f21e978a27fbc1682c9 /pkgs/games/lincity
parentb108c351f0e38220c4371c358c1c6d6e2088cb9d (diff)
lincityNg: turn off format hardening
Diffstat (limited to 'pkgs/games/lincity')
-rw-r--r--pkgs/games/lincity/ng.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/games/lincity/ng.nix b/pkgs/games/lincity/ng.nix
index 8807831ef0149..0c3fc7055b7c5 100644
--- a/pkgs/games/lincity/ng.nix
+++ b/pkgs/games/lincity/ng.nix
@@ -15,13 +15,15 @@ let s = # Generated upstream information
   };
   buildInputs = [zlib jam pkgconfig gettext libxml2 libxslt xproto libX11 mesa 
     SDL SDL_mixer SDL_image SDL_ttf SDL_gfx physfs];
-in 
+in
 stdenv.mkDerivation rec {
   inherit (s) name version;
   src = fetchurl {
     inherit (s) url sha256;
   };
 
+  hardening_format = false;
+
   inherit buildInputs;
 
   buildPhase = "jam";