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: 9f6b441aecfc
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4e270f979ca3
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Feb 1, 2019

  1. racket: mark x86_64-darwin broken

    It does not build on this platform, and will not do so any time soon.
    
    Closes #53389
    clacke committed Feb 1, 2019
    Copy the full SHA
    45c0f89 View commit details
  2. Merge pull request #55005 from clacke/racket-full-no-darwin

    racket: remove x86_64-darwin from platforms
    alyssais authored Feb 1, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    4e270f9 View commit details
Showing with 2 additions and 0 deletions.
  1. +1 −0 pkgs/development/interpreters/racket/default.nix
  2. +1 −0 pkgs/development/interpreters/racket/minimal.nix
1 change: 1 addition & 0 deletions pkgs/development/interpreters/racket/default.nix
Original file line number Diff line number Diff line change
@@ -101,5 +101,6 @@ stdenv.mkDerivation rec {
license = licenses.lgpl3;
maintainers = with maintainers; [ kkallio henrytill vrthra ];
platforms = [ "x86_64-darwin" "x86_64-linux" ];
broken = stdenv.isDarwin; # No support yet for setting FFI lookup path
};
}
1 change: 1 addition & 0 deletions pkgs/development/interpreters/racket/minimal.nix
Original file line number Diff line number Diff line change
@@ -15,5 +15,6 @@ racket.overrideAttrs (oldAttrs: rec {
and the pkg library are still bundled.
'';
platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" ];
broken = false; # Minimal build does not require working FFI
};
})