tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
softhsm: fix and enable strictDeps
FliegendeWurst
7 months ago
916d98f7
8e468f55
+5
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
so
softhsm
package.nix
+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
25
+
# The configure script checks for the sqlite3 command, but never uses it.
26
26
+
# Provide an arbitrary executable file for cross scenarios.
27
27
+
"ac_cv_path_SQLITE3=/"
25
28
];
26
29
27
30
buildInputs = [
28
31
botan2
29
32
sqlite
30
33
];
34
34
+
35
35
+
strictDeps = true;
31
36
32
37
postInstall = "rm -rf $out/var";
33
38