about summary refs log tree commit diff
path: root/pkgs/applications/science/misc/openmvg
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2023-06-26 11:28:12 +0200
committerVladimír Čunát <v@cunat.cz>2023-06-26 11:28:12 +0200
commit24711148d4c74b862dd3dcf7d900005932e24e5b (patch)
tree5ef340e569ea54e7a618f8a1fb820e289cbf13ed /pkgs/applications/science/misc/openmvg
parent109633bef055415528456848bbbe93fdfdfb73ba (diff)
openmvg: fixup build
The build broke probably after cmake upgrade in b8ac5b6cfb,
but either way - this forcing of old C++ standard seemed bad.
https://hydra.nixos.org/build/225241222/nixlog/2/tail
Diffstat (limited to 'pkgs/applications/science/misc/openmvg')
-rw-r--r--pkgs/applications/science/misc/openmvg/default.nix1
1 files changed, 0 insertions, 1 deletions
diff --git a/pkgs/applications/science/misc/openmvg/default.nix b/pkgs/applications/science/misc/openmvg/default.nix
index f9bcfa5df73c5..c5434c8699093 100644
--- a/pkgs/applications/science/misc/openmvg/default.nix
+++ b/pkgs/applications/science/misc/openmvg/default.nix
@@ -26,7 +26,6 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ cmake pkg-config ];
 
   cmakeFlags = [
-    "-DCMAKE_CXX_FLAGS=-std=c++11"
     "-DOpenMVG_BUILD_EXAMPLES=${if enableExamples then "ON" else "OFF"}"
     "-DOpenMVG_BUILD_DOC=${if enableDocs then "ON" else "OFF"}"
     "-DTARGET_ARCHITECTURE=generic"