summary refs log tree commit diff
path: root/pkgs/development/libraries/lensfun
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2021-01-11 01:19:15 +0100
committerFlorian Klink <flokli@flokli.de>2021-01-12 15:28:25 +0100
commitc939d8f1999d0452aca081939f5a9ff743e31ec7 (patch)
tree3e62da2a3583979727d8badbe05b0e194d6dee02 /pkgs/development/libraries/lensfun
parent77a64e88d7993643d74012830cedc387d57a8d5d (diff)
downloadnixpkgs-c939d8f1999d0452aca081939f5a9ff743e31ec7.tar
nixpkgs-c939d8f1999d0452aca081939f5a9ff743e31ec7.tar.gz
nixpkgs-c939d8f1999d0452aca081939f5a9ff743e31ec7.tar.bz2
nixpkgs-c939d8f1999d0452aca081939f5a9ff743e31ec7.tar.lz
nixpkgs-c939d8f1999d0452aca081939f5a9ff743e31ec7.tar.xz
nixpkgs-c939d8f1999d0452aca081939f5a9ff743e31ec7.tar.zst
nixpkgs-c939d8f1999d0452aca081939f5a9ff743e31ec7.zip
lensfun: don't install helper scripts
The `[g-]lensfun-update-data` binaries can't really work on NixOS (as
the database is immutable), and most other scripts seem to require the
lensfun python bindings (which aren't installed either).

Let's disable installing the helper scripts for now.
Diffstat (limited to 'pkgs/development/libraries/lensfun')
-rw-r--r--pkgs/development/libraries/lensfun/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/lensfun/default.nix b/pkgs/development/libraries/lensfun/default.nix
index 1f22f64f057..c27a2c4daa7 100644
--- a/pkgs/development/libraries/lensfun/default.nix
+++ b/pkgs/development/libraries/lensfun/default.nix
@@ -17,7 +17,7 @@ stdenv.mkDerivation {
   nativeBuildInputs = [ cmake pkg-config ];
   buildInputs = [ glib zlib libpng ];
 
-  configureFlags = [ "-v" ];
+  cmakeFlags = [ "-DINSTALL_HELPER_SCRIPTS=OFF" ];
 
   meta = with stdenv.lib; {
     platforms = platforms.linux ++ platforms.darwin;