Skip to content

Commit 0a2c39e

Browse files
committedSep 19, 2017
p11_kit: don't build documentation
This depends ultimately on texlive which is a big build and depends on lots of libraries which often get security updates. This triggers mass rebuilds because systemd depends on gnutls which depends on p11_kit. This was introduced with 93d80f1.
1 parent c7ca42f commit 0a2c39e

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed
 

Diff for: ‎pkgs/development/libraries/p11-kit/default.nix

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{ stdenv, fetchFromGitHub, autoreconfHook, which, pkgconfig, libiconv
2-
, libffi, libtasn1, gtk_doc, libxslt, docbook_xsl }:
2+
, libffi, libtasn1 }:
33

44
stdenv.mkDerivation rec {
55
name = "p11-kit-${version}";
@@ -12,10 +12,10 @@ stdenv.mkDerivation rec {
1212
sha256 = "1l8sg0g74k2mk0y6vz19hc103dzizxa0h579gdhvxifckglb01hy";
1313
};
1414

15-
outputs = [ "out" "dev" "devdoc" ];
15+
outputs = [ "out" "dev"];
1616
outputBin = "dev";
1717

18-
nativeBuildInputs = [ autoreconfHook which pkgconfig gtk_doc libxslt docbook_xsl ];
18+
nativeBuildInputs = [ autoreconfHook which pkgconfig ];
1919
buildInputs = [ libffi libtasn1 libiconv ];
2020

2121
autoreconfPhase = ''
@@ -26,7 +26,6 @@ stdenv.mkDerivation rec {
2626
"--sysconfdir=/etc"
2727
"--localstatedir=/var"
2828
"--without-trust-paths"
29-
"--enable-doc"
3029
];
3130

3231
installFlags = [ "exampledir=\${out}/etc/pkcs11" ];

0 commit comments

Comments
 (0)
Please sign in to comment.