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: 64a8e60df9a9
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f21b4270a1e7
Choose a head ref
  • 4 commits
  • 4 files changed
  • 1 contributor

Commits on May 31, 2019

  1. Copy the full SHA
    8cd5314 View commit details
  2. Copy the full SHA
    6d7cbba View commit details
  3. pth: mark as broken on aarch64 cross

    reported on irc, reproduced locally
    matthewbauer committed May 31, 2019
    Copy the full SHA
    626a9f9 View commit details
  4. Merge pull request #62273 from matthewbauer/bad-platforms-add

    Add treewide bad platforms
    matthewbauer authored May 31, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    f21b427 View commit details
1 change: 1 addition & 0 deletions pkgs/development/libraries/enchant/default.nix
Original file line number Diff line number Diff line change
@@ -17,6 +17,7 @@ stdenv.mkDerivation rec {
description = "Generic spell checking library";
homepage = https://abiword.github.io/enchant;
platforms = platforms.unix;
badPlatforms = [ "x86_64-darwin" ];
license = licenses.lgpl21;
};
}
1 change: 1 addition & 0 deletions pkgs/development/libraries/gmp/4.3.2.nix
Original file line number Diff line number Diff line change
@@ -69,6 +69,7 @@ let self = stdenv.mkDerivation rec {

maintainers = [ ];
platforms = stdenv.lib.platforms.all;
badPlatforms = [ "x86_64-darwin" ];
};
};
in self
1 change: 1 addition & 0 deletions pkgs/development/libraries/gmp/5.1.x.nix
Original file line number Diff line number Diff line change
@@ -71,6 +71,7 @@ let self = stdenv.mkDerivation rec {
'';

platforms = platforms.all;
badPlatforms = [ "x86_64-darwin" ];
maintainers = [ maintainers.peti ];
};
};
1 change: 1 addition & 0 deletions pkgs/development/libraries/pth/default.nix
Original file line number Diff line number Diff line change
@@ -17,5 +17,6 @@ stdenv.mkDerivation rec {
homepage = https://www.gnu.org/software/pth;
license = licenses.lgpl21Plus;
platforms = platforms.all;
broken = stdenv.hostPlatform != stdenv.buildPlatform && stdenv.hostPlatform.isAarch64;
};
}