Merge pull request #55004 from clacke/racket-build-cacert

racket{,-minimal}: add cacert to nativeBuildInputs, silence warnings
This commit is contained in:
Sarah Brofeldt 2019-03-02 10:10:16 +01:00 committed by GitHub
commit bda745e9fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,5 @@
{ stdenv, fetchurl, makeFontsConf, makeWrapper { stdenv, fetchurl, makeFontsConf, makeWrapper
, cacert
, cairo, coreutils, fontconfig, freefont_ttf , cairo, coreutils, fontconfig, freefont_ttf
, glib, gmp , glib, gmp
, gtk3 , gtk3
@ -60,7 +61,7 @@ stdenv.mkDerivation rec {
(stdenv.lib.optionalString stdenv.isDarwin "-framework CoreFoundation") (stdenv.lib.optionalString stdenv.isDarwin "-framework CoreFoundation")
]; ];
nativeBuildInputs = [ wrapGAppsHook ]; nativeBuildInputs = [ cacert wrapGAppsHook ];
buildInputs = [ fontconfig libffi libtool sqlite gsettings-desktop-schemas gtk3 ] buildInputs = [ fontconfig libffi libtool sqlite gsettings-desktop-schemas gtk3 ]
++ stdenv.lib.optionals stdenv.isDarwin [ libiconv CoreFoundation ]; ++ stdenv.lib.optionals stdenv.isDarwin [ libiconv CoreFoundation ];