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: fc42a76d93fc
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 00a8fdac61c9
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 27, 2018

  1. gnome3.gnome-keyring: disable test suite on i686 to fix the build

    #51121
    (cherry picked from commit 86d1ba3)
    peti committed Nov 27, 2018
    Copy the full SHA
    00a8fda View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 pkgs/desktops/gnome-3/core/gnome-keyring/default.nix
2 changes: 1 addition & 1 deletion pkgs/desktops/gnome-3/core/gnome-keyring/default.nix
Original file line number Diff line number Diff line change
@@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
patchShebangs build
'';

doCheck = true;
doCheck = !stdenv.isi686; # https://github.com/NixOS/nixpkgs/issues/51121
# In 3.20.1, tests do not support Python 3
checkInputs = [ dbus python2 ];