softhsm: fix and enable strictDeps

+5
+5
pkgs/by-name/so/softhsm/package.nix
··· 22 22 "--with-objectstore-backend-db" 23 23 "--sysconfdir=$out/etc" 24 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=/" 25 28 ]; 26 29 27 30 buildInputs = [ 28 31 botan2 29 32 sqlite 30 33 ]; 34 + 35 + strictDeps = true; 31 36 32 37 postInstall = "rm -rf $out/var"; 33 38