Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1fa6e6fd4f63
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: bda745e9fca7
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 31, 2019

  1. racket{,-minimal}: add cacert to nativeBuildInputs, silence warnings

    We don't actually perform any network access, but since Racket 7.0,
    when certain modules are loaded, they emit an annoying warning.
    While compiling the bundled packages, this happens over and over and
    pollutes the logs.
    
    Having a correct SSL configuration prevents the warnings.
    clacke committed Jan 31, 2019
    Copy the full SHA
    f0fbed5 View commit details

Commits on Mar 2, 2019

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

    racket{,-minimal}: add cacert to nativeBuildInputs, silence warnings
    srhb authored Mar 2, 2019
    Copy the full SHA
    bda745e View commit details
Showing with 2 additions and 1 deletion.
  1. +2 −1 pkgs/development/interpreters/racket/default.nix
3 changes: 2 additions & 1 deletion pkgs/development/interpreters/racket/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{ stdenv, fetchurl, makeFontsConf, makeWrapper
, cacert
, cairo, coreutils, fontconfig, freefont_ttf
, glib, gmp
, gtk3
@@ -60,7 +61,7 @@ stdenv.mkDerivation rec {
(stdenv.lib.optionalString stdenv.isDarwin "-framework CoreFoundation")
];

nativeBuildInputs = [ wrapGAppsHook ];
nativeBuildInputs = [ cacert wrapGAppsHook ];

buildInputs = [ fontconfig libffi libtool sqlite gsettings-desktop-schemas gtk3 ]
++ stdenv.lib.optionals stdenv.isDarwin [ libiconv CoreFoundation ];