about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2021-02-16 14:46:25 +0100
committerMichael Weiss <dev.primeos@gmail.com>2021-02-16 14:46:25 +0100
commit2f467621b781f73eab7b8ddd904904ea1fd32698 (patch)
tree5f63fa2ac6564777327708b11dc323d0cc5027d1 /pkgs
parent3d9deb54731274b59cfd196f27d68af666665d0a (diff)
tev: Set TEV_DEPLOY=1
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/graphics/tev/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/tev/default.nix b/pkgs/applications/graphics/tev/default.nix
index 30d33c498ee3e..3c48bbab0b853 100644
--- a/pkgs/applications/graphics/tev/default.nix
+++ b/pkgs/applications/graphics/tev/default.nix
@@ -26,6 +26,10 @@ stdenv.mkDerivation rec {
       --replace "/usr/" "''${out}/"
   '';
 
+  cmakeFlags = [
+    "-DTEV_DEPLOY=1" # Only relevant not to append "dev" to the version
+  ];
+
   postInstall = ''
     wrapProgram $out/bin/tev \
       "''${gappsWrapperArgs[@]}" \