blob: bb96c4dd6db23063f2caec308945b9fc0e6dcf2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
package p11-kit {
description = "provides a way to load and enumerate PKCS#11 modules";
website = "https://p11-glue.freedesktop.org/p11-kit.html";
anitya = 2582;
version# = "0.26.5";
source = remoteGit {
url = "https://github.com/p11-glue/p11-kit.git";
tag = version;
checksum = "nOuOi2Il8J7Nf3UlHDx4DcZY4UVpWBgieIV3VmxOryj1jVIaiUU3bunE_L56m6eD";
};
exec = meson {
setup = {
"systemd": "disabled";
"libffi": "enabled";
};
};
inputs = [
coreutils,
diffutils,
libtasn1,
];
runtime = [
libffi,
libtasn1,
];
}
|