nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #185182 from amjoseph-nixpkgs/pr/powerpc64le-bootstrapFiles/again

pkgs/stdenv/linux: update powerpc64le bootstrap-files

authored by

Bernardo Meurer and committed by
GitHub
14181ab1 e2e40d70

+9 -9
+9 -9
pkgs/stdenv/linux/bootstrap-files/powerpc64le.nix
··· 1 1 # 2 2 # Files came from this Hydra build: 3 3 # 4 - # https://hydra.nixos.org/build/172142499 4 + # https://hydra.nixos.org/build/186237511 5 5 # 6 - # Which used nixpkgs revision 49a83445c28c4ffb8a1a90a1f68e6150ea48893b 6 + # Which used nixpkgs revision ac43c444780a80e789fd14fe2114acd4a3b5cf9d 7 7 # to instantiate: 8 8 # 9 - # /nix/store/gj272sd56gsj6qpyzh4njpfzwdhviliz-stdenv-bootstrap-tools-powerpc64le-unknown-linux-gnu.drv 9 + # /nix/store/nhjbza9vlcyhp9zxfz6lwpc3m2ghrpzj-stdenv-bootstrap-tools-powerpc64le-unknown-linux-gnu.drv 10 10 # 11 11 # and then built: 12 12 # 13 - # /nix/store/n81pljbd8m0xgypm84krc2bnvqgjrfxx-stdenv-bootstrap-tools-powerpc64le-unknown-linux-gnu 13 + # /nix/store/fklpm7fy6cp5wz55w0gd8wakyqvzapjx-stdenv-bootstrap-tools-powerpc64le-unknown-linux-gnu 14 14 # 15 15 { 16 16 busybox = import <nix/fetchurl.nix> { 17 - url = "http://tarballs.nixos.org/stdenv-linux/powerpc64le/49a83445c28c4ffb8a1a90a1f68e6150ea48893b/busybox"; 18 - sha256 = "sha256-UscnfGKOZAKLkPcRtwrbT5Uj8m3Kj9jhkKp9MUc1eCY="; 17 + url = "http://tarballs.nixos.org/stdenv-linux/powerpc64le/ac43c444780a80e789fd14fe2114acd4a3b5cf9d/busybox"; 18 + sha256 = "sha256-jtPEAsht4AUAG4MLK8xocQSfveUR4ppU1lS4bGI1VN4="; 19 19 executable = true; 20 20 }; 21 - bootstrapTools =import <nix/fetchurl.nix> { 22 - url = "http://tarballs.nixos.org/stdenv-linux/powerpc64le/49a83445c28c4ffb8a1a90a1f68e6150ea48893b/bootstrap-tools.tar.xz"; 23 - sha256 = "sha256-A20GKGn3rM8K2JcU0SApRp3+avUE+bIm1h632AitRzU="; 21 + bootstrapTools = import <nix/fetchurl.nix> { 22 + url = "http://tarballs.nixos.org/stdenv-linux/powerpc64le/ac43c444780a80e789fd14fe2114acd4a3b5cf9d/bootstrap-tools.tar.xz"; 23 + sha256 = "sha256-MpIDnpZUK3M17qlnuoxfnK0EgxRosm3TMW1WfPZ1+jU="; 24 24 }; 25 25 }