summary refs log tree commit diff
path: root/pkgs/os-specific/linux/conky/default.nix
diff options
context:
space:
mode:
authorAneesh Agrawal <aneeshusa@gmail.com>2016-08-25 17:11:27 -0400
committerJörg Thalheim <joerg@higgsboson.tk>2016-10-01 16:13:41 +0200
commitfcee1d0b28aa0f45f559d38659fd2a11cd34dafe (patch)
tree809af78a8471b509b0e0516df1d2fbb5817a4b83 /pkgs/os-specific/linux/conky/default.nix
parent0e3e7a6bcd96405ddc257b93d57cda09b558cbdb (diff)
downloadnixpkgs-fcee1d0b28aa0f45f559d38659fd2a11cd34dafe.tar
nixpkgs-fcee1d0b28aa0f45f559d38659fd2a11cd34dafe.tar.gz
nixpkgs-fcee1d0b28aa0f45f559d38659fd2a11cd34dafe.tar.bz2
nixpkgs-fcee1d0b28aa0f45f559d38659fd2a11cd34dafe.tar.lz
nixpkgs-fcee1d0b28aa0f45f559d38659fd2a11cd34dafe.tar.xz
nixpkgs-fcee1d0b28aa0f45f559d38659fd2a11cd34dafe.tar.zst
nixpkgs-fcee1d0b28aa0f45f559d38659fd2a11cd34dafe.zip
Remove redundant -DCMAKE_BUILD_TYPE=Release flags
Since commit 183d05a0 in 2012, this is the default.

fixes #18000
Diffstat (limited to 'pkgs/os-specific/linux/conky/default.nix')
-rw-r--r--pkgs/os-specific/linux/conky/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/os-specific/linux/conky/default.nix b/pkgs/os-specific/linux/conky/default.nix
index 37ad34d8b64..66069f7c982 100644
--- a/pkgs/os-specific/linux/conky/default.nix
+++ b/pkgs/os-specific/linux/conky/default.nix
@@ -102,7 +102,7 @@ stdenv.mkDerivation rec {
     ++ optional  weatherXoapSupport libxml2
     ;
 
-  cmakeFlags = [ "-DCMAKE_BUILD_TYPE=Release" ]
+  cmakeFlags = []
     ++ optional docsSupport         "-DMAINTAINER_MODE=ON"
     ++ optional curlSupport         "-DBUILD_CURL=ON"
     ++ optional (!ibmSupport)       "-DBUILD_IBM=OFF"