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

Commits on Mar 23, 2019

  1. anbox: fix build on x86_64-linux

    `x86-64-linux` was a typo; there needs to be an underscore in there.
    benley committed Mar 23, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    vcunat Vladimír Čunát
    Copy the full SHA
    fba697d View commit details
  2. Merge pull request #58185 from benley/benley/anbox-amd64

    anbox: fix build on x86_64-linux
    srhb authored Mar 23, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    vcunat Vladimír Čunát
    Copy the full SHA
    06d7f2d View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 pkgs/os-specific/linux/anbox/default.nix
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/anbox/default.nix
Original file line number Diff line number Diff line change
@@ -132,7 +132,7 @@ stdenv.mkDerivation rec {
description = "Android in a box";
license = licenses.gpl2;
maintainers = with maintainers; [ edwtjo ];
platforms = [ "armv7l-linux" "aarch64-linux" "x86-64-linux" ];
platforms = [ "armv7l-linux" "aarch64-linux" "x86_64-linux" ];
};

}