summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-common.nix
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2016-04-06 08:26:01 +0000
committerRobin Gloster <mail@glob.in>2016-04-06 08:26:01 +0000
commit58a73d3f4be799a025347406d3a867c25555a8d1 (patch)
treedb5ff0ab013ab0519e47e83c2892d659c5839c96 /pkgs/development/haskell-modules/configuration-common.nix
parent057a899791d6f346381961932625be8f31736d0e (diff)
downloadnixpkgs-58a73d3f4be799a025347406d3a867c25555a8d1.tar
nixpkgs-58a73d3f4be799a025347406d3a867c25555a8d1.tar.gz
nixpkgs-58a73d3f4be799a025347406d3a867c25555a8d1.tar.bz2
nixpkgs-58a73d3f4be799a025347406d3a867c25555a8d1.tar.lz
nixpkgs-58a73d3f4be799a025347406d3a867c25555a8d1.tar.xz
nixpkgs-58a73d3f4be799a025347406d3a867c25555a8d1.tar.zst
nixpkgs-58a73d3f4be799a025347406d3a867c25555a8d1.zip
haskellPackages.lvmrun: disable format hardening
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 49a0a3eff15..f1c1abfedb5 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -440,7 +440,9 @@ self: super: {
   lensref = dontCheck super.lensref;
   liquidhaskell = dontCheck super.liquidhaskell;
   lucid = dontCheck super.lucid; #https://github.com/chrisdone/lucid/issues/25
-  lvmrun = dontCheck super.lvmrun;
+  lvmrun = pkgs.lib.overrideDerivation (dontCheck super.lvmrun) (drv: {
+    hardeningDisable = [ "format" ];
+  });
   memcache = dontCheck super.memcache;
   milena = dontCheck super.milena;
   nats-queue = dontCheck super.nats-queue;