summary refs log tree commit diff
path: root/pkgs/development/libraries/science
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-06-30 02:23:34 +0200
committerGitHub <noreply@github.com>2021-06-30 02:23:34 +0200
commit4b3cb7c6eeda6967d9c9e0331912e327d3afea5a (patch)
tree6ca4a4e30e10ae1c1a10fc79878ba74dcd6c5bb5 /pkgs/development/libraries/science
parent2bd08c849a77396b7466fc4b6387dc50bad01945 (diff)
downloadnixpkgs-4b3cb7c6eeda6967d9c9e0331912e327d3afea5a.tar
nixpkgs-4b3cb7c6eeda6967d9c9e0331912e327d3afea5a.tar.gz
nixpkgs-4b3cb7c6eeda6967d9c9e0331912e327d3afea5a.tar.bz2
nixpkgs-4b3cb7c6eeda6967d9c9e0331912e327d3afea5a.tar.lz
nixpkgs-4b3cb7c6eeda6967d9c9e0331912e327d3afea5a.tar.xz
nixpkgs-4b3cb7c6eeda6967d9c9e0331912e327d3afea5a.tar.zst
nixpkgs-4b3cb7c6eeda6967d9c9e0331912e327d3afea5a.zip
Apply suggestions from code review
Diffstat (limited to 'pkgs/development/libraries/science')
-rw-r--r--pkgs/development/libraries/science/math/p4est-sc/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/development/libraries/science/math/p4est-sc/default.nix b/pkgs/development/libraries/science/math/p4est-sc/default.nix
index cf39bcbb952..222380e15b2 100644
--- a/pkgs/development/libraries/science/math/p4est-sc/default.nix
+++ b/pkgs/development/libraries/science/math/p4est-sc/default.nix
@@ -36,8 +36,7 @@ stdenv.mkDerivation {
     ${if mpiSupport then "unset CC" else ""}
   '';
 
-  configureFlags = [ ]
-    ++ lib.optional debugEnable "--enable-debug"
+  configureFlags = lib.optional debugEnable "--enable-debug"
     ++ lib.optional mpiSupport "--enable-mpi"
   ;