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

Commits on Dec 6, 2018

  1. stdenv: add armv7a-linux system

    Julien Moutinho committed Dec 6, 2018
    Copy the full SHA
    3168e85 View commit details

Commits on Mar 1, 2019

  1. Merge pull request #51628 from ju1m/arm

    stdenv: add armv7a-linux system
    matthewbauer authored Mar 1, 2019
    Copy the full SHA
    9edb851 View commit details
Showing with 2 additions and 0 deletions.
  1. +1 −0 pkgs/stdenv/default.nix
  2. +1 −0 pkgs/stdenv/linux/default.nix
1 change: 1 addition & 0 deletions pkgs/stdenv/default.nix
Original file line number Diff line number Diff line change
@@ -43,6 +43,7 @@ in
"x86_64-linux" = stagesLinux;
"armv5tel-linux" = stagesLinux;
"armv6l-linux" = stagesLinux;
"armv7a-linux" = stagesLinux;
"armv7l-linux" = stagesLinux;
"aarch64-linux" = stagesLinux;
"mipsel-linux" = stagesLinux;
1 change: 1 addition & 0 deletions pkgs/stdenv/linux/default.nix
Original file line number Diff line number Diff line change
@@ -13,6 +13,7 @@
"x86_64-linux" = import ./bootstrap-files/x86_64.nix;
"armv5tel-linux" = import ./bootstrap-files/armv5tel.nix;
"armv6l-linux" = import ./bootstrap-files/armv6l.nix;
"armv7a-linux" = import ./bootstrap-files/armv7l.nix;
"armv7l-linux" = import ./bootstrap-files/armv7l.nix;
"aarch64-linux" = import ./bootstrap-files/aarch64.nix;
"mipsel-linux" = import ./bootstrap-files/loongson2f.nix;