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: ba947eba043f
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 357be5c66cff
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Apr 16, 2020

  1. racket: use --enable-useprefix configure flag.

    This is to fix a regression in upstream Racket packaging, the upstream
    bug tracking this is here:
    
      racket/racket#3046
    
    When the bug is fixed this workaround will be unnecessary.
    takikawa committed Apr 16, 2020
    Copy the full SHA
    b271255 View commit details

Commits on Apr 17, 2020

  1. Merge pull request #85385 from takikawa/racket-enable-useprefix

    racket: use --enable-useprefix configure flag.
    flokli authored Apr 17, 2020
    Copy the full SHA
    357be5c View commit details
Showing with 4 additions and 1 deletion.
  1. +4 −1 pkgs/development/interpreters/racket/default.nix
5 changes: 4 additions & 1 deletion pkgs/development/interpreters/racket/default.nix
Original file line number Diff line number Diff line change
@@ -82,7 +82,10 @@ stdenv.mkDerivation rec {
'';

shared = if stdenv.isDarwin then "dylib" else "shared";
configureFlags = [ "--enable-${shared}" "--enable-lt=${libtool}/bin/libtool" ]
configureFlags = [ "--enable-${shared}" "--enable-lt=${libtool}/bin/libtool"
# The following flag is a temporary workaround for an upstream bug:
# https://github.com/racket/racket/issues/3046
"--enable-useprefix" ]
++ stdenv.lib.optional disableDocs [ "--disable-docs" ]
++ stdenv.lib.optional stdenv.isDarwin [ "--enable-xonx" ];