Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions pkgs/stdenv/linux/bootstrap-files/powerpc64.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#
# Files came from this Hydra build:
#
# https://hydra.nixos.org/build/178153111
#
# Which used nixpkgs revision 7c7d71d90e7d715847809a65fa2463c668e58ab3
# to instantiate:
#
# /nix/store/2cvsxg39jq2j119cx349zybibv3p0ns9-stdenv-bootstrap-tools-powerpc64-unknown-linux-gnu.drv
#
# and then built:
#
# /nix/store/c8c3qa2bpmi0j6zx8xg2ylz9q0wixq3z-stdenv-bootstrap-tools-powerpc64-unknown-linux-gnu
#
{
busybox = import <nix/fetchurl.nix> {
url = "http://tarballs.nixos.org/stdenv-linux/powerpc64/7c7d71d90e7d715847809a65fa2463c668e58ab3/busybox";
hash = "sha256-oxKpW9QJ4CjXdQWwYOKkCRgjhRj91+1GSHAf5uFX44Q=";
executable = true;
};
bootstrapTools = import <nix/fetchurl.nix> {
url = "http://tarballs.nixos.org/stdenv-linux/powerpc64/7c7d71d90e7d715847809a65fa2463c668e58ab3/bootstrap-tools.tar.xz";
hash = "sha256-GAvEC7Ow1FQKO3jLdf5nFXvJAvOqcM90kUEhHWJh+FY=";
};
}
1 change: 1 addition & 0 deletions pkgs/stdenv/linux/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
aarch64-linux = import ./bootstrap-files/aarch64.nix;
mipsel-linux = import ./bootstrap-files/loongson2f.nix;
powerpc64le-linux = import ./bootstrap-files/powerpc64le.nix;
powerpc64-linux = import ./bootstrap-files/powerpc64.nix;
riscv64-linux = import ./bootstrap-files/riscv64.nix;
};
musl = {
Expand Down