softhsm: fix and enable strictDeps (#413602)

This commit is contained in:
Aleksana
2025-06-07 13:53:57 +08:00
committed by GitHub
+5
View File
@@ -22,6 +22,9 @@ stdenv.mkDerivation rec {
"--with-objectstore-backend-db"
"--sysconfdir=$out/etc"
"--localstatedir=$out/var"
# The configure script checks for the sqlite3 command, but never uses it.
# Provide an arbitrary executable file for cross scenarios.
"ac_cv_path_SQLITE3=/"
];
buildInputs = [
@@ -29,6 +32,8 @@ stdenv.mkDerivation rec {
sqlite
];
strictDeps = true;
postInstall = "rm -rf $out/var";
meta = with lib; {