summary refs log tree commit diff
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2018-05-29 14:11:13 +0000
committerOrivej Desh <orivej@gmx.fr>2018-05-29 14:12:18 +0000
commit06f1ae59713db2bd50647652677b5061d913b281 (patch)
treeeab07bf181e33aa741a271aad03a43ae81ebcfb7
parent59f86ab48d44e22dd0411093b2f55f9a969f7b53 (diff)
downloadnixlib-06f1ae59713db2bd50647652677b5061d913b281.tar
nixlib-06f1ae59713db2bd50647652677b5061d913b281.tar.gz
nixlib-06f1ae59713db2bd50647652677b5061d913b281.tar.bz2
nixlib-06f1ae59713db2bd50647652677b5061d913b281.tar.lz
nixlib-06f1ae59713db2bd50647652677b5061d913b281.tar.xz
nixlib-06f1ae59713db2bd50647652677b5061d913b281.tar.zst
nixlib-06f1ae59713db2bd50647652677b5061d913b281.zip
ccl: fix build after #28029
https://github.com/Clozure/ccl/blob/15d7e26377efa27eeb7086960f090f8c8ab5330e/lisp-kernel/linuxx8664/Makefile#L29
-rw-r--r--pkgs/development/compilers/ccl/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/compilers/ccl/default.nix b/pkgs/development/compilers/ccl/default.nix
index f3a4ff74aa05..9570b0eead85 100644
--- a/pkgs/development/compilers/ccl/default.nix
+++ b/pkgs/development/compilers/ccl/default.nix
@@ -81,6 +81,8 @@ stdenv.mkDerivation rec {
     ln -s "$out"/bin/"${CCL_RUNTIME}" "$out"/bin/ccl
   '';
 
+  hardeningDisable = [ "format" ];
+
   meta = with stdenv.lib; {
     description = "Clozure Common Lisp";
     homepage    = https://ccl.clozure.com/;