about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/graphics/opentoonz/default.nix1
-rw-r--r--pkgs/applications/graphics/opentoonz/source.nix4
2 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/graphics/opentoonz/default.nix b/pkgs/applications/graphics/opentoonz/default.nix
index 1214d868d5c8..fd1366811d57 100644
--- a/pkgs/applications/graphics/opentoonz/default.nix
+++ b/pkgs/applications/graphics/opentoonz/default.nix
@@ -39,6 +39,7 @@ in stdenv.mkDerivation rec {
     "-DCMAKE_SKIP_BUILD_RPATH=ON"
     "-DTIFF_INCLUDE_DIR=${libtiff.dev}/include"
     "-DTIFF_LIBRARY=${libtiff.out}/lib/libtiff.so"
+    "-DCMAKE_SKIP_BUILD_RPATH=ON"
   ];
 
   postInstall = ''
diff --git a/pkgs/applications/graphics/opentoonz/source.nix b/pkgs/applications/graphics/opentoonz/source.nix
index 2864dcf36088..9225412821b1 100644
--- a/pkgs/applications/graphics/opentoonz/source.nix
+++ b/pkgs/applications/graphics/opentoonz/source.nix
@@ -1,10 +1,10 @@
 # opentoonz's source archive contains both opentoonz's source and a modified
 # version of libtiff that opentoonz requires.
 
-{ fetchFromGitHub, }: rec {
+{ fetchFromGitHub }: rec {
   versions = {
     opentoonz = "1.7.1";
-    libtiff = "4.0.3";  # The version in thirdparty/tiff-*
+    libtiff = "4.0.3"; # The version in thirdparty/tiff-*
   };
 
   src = fetchFromGitHub {