summary refs log tree commit diff
path: root/pkgs/servers/gpm
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2015-12-23 02:59:47 +0100
committerRobin Gloster <mail@glob.in>2016-01-30 16:36:57 +0000
commit954e9903adc837c201a7bd70eede50d874aadbf6 (patch)
tree2e73f91504f4970cb2ae6bdb08115267eb634ced /pkgs/servers/gpm
parentc5f092c6a7f20ddca7d1b2ddc2cb8eb6b02d2eaf (diff)
downloadnixpkgs-954e9903adc837c201a7bd70eede50d874aadbf6.tar
nixpkgs-954e9903adc837c201a7bd70eede50d874aadbf6.tar.gz
nixpkgs-954e9903adc837c201a7bd70eede50d874aadbf6.tar.bz2
nixpkgs-954e9903adc837c201a7bd70eede50d874aadbf6.tar.lz
nixpkgs-954e9903adc837c201a7bd70eede50d874aadbf6.tar.xz
nixpkgs-954e9903adc837c201a7bd70eede50d874aadbf6.tar.zst
nixpkgs-954e9903adc837c201a7bd70eede50d874aadbf6.zip
Use a hardened stdenv by default
Diffstat (limited to 'pkgs/servers/gpm')
-rw-r--r--pkgs/servers/gpm/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/servers/gpm/default.nix b/pkgs/servers/gpm/default.nix
index a9fac485f90..c496ff3fdbb 100644
--- a/pkgs/servers/gpm/default.nix
+++ b/pkgs/servers/gpm/default.nix
@@ -15,6 +15,8 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ automake autoconf libtool flex bison texinfo ];
   buildInputs = [ ncurses ];
 
+  noHardening_format = true;
+
   preConfigure = ''
     ./autogen.sh
   '';