softhsm: fix and enable strictDeps

+5
+5
pkgs/by-name/so/softhsm/package.nix
··· 22 "--with-objectstore-backend-db" 23 "--sysconfdir=$out/etc" 24 "--localstatedir=$out/var" 25 ]; 26 27 buildInputs = [ 28 botan2 29 sqlite 30 ]; 31 32 postInstall = "rm -rf $out/var"; 33
··· 22 "--with-objectstore-backend-db" 23 "--sysconfdir=$out/etc" 24 "--localstatedir=$out/var" 25 + # The configure script checks for the sqlite3 command, but never uses it. 26 + # Provide an arbitrary executable file for cross scenarios. 27 + "ac_cv_path_SQLITE3=/" 28 ]; 29 30 buildInputs = [ 31 botan2 32 sqlite 33 ]; 34 + 35 + strictDeps = true; 36 37 postInstall = "rm -rf $out/var"; 38