summary refs log tree commit diff
path: root/pkgs/stdenv/linux
diff options
context:
space:
mode:
authorBernardo Meurer <bernardo@meurer.org>2022-07-16 16:41:08 -0700
committerGitHub <noreply@github.com>2022-07-16 16:41:08 -0700
commit5fed5fe917a97e4d9080fe332287df711f49d45d (patch)
tree4aca37b369eb045822239c237b99ee5ddb8e8ace /pkgs/stdenv/linux
parent04c57a8ccd1d404864e6f1bea09cfa03e52c22bd (diff)
parent73811b372e5434ef83c189c7df9a3ed7adc2b87e (diff)
downloadnixpkgs-5fed5fe917a97e4d9080fe332287df711f49d45d.tar
nixpkgs-5fed5fe917a97e4d9080fe332287df711f49d45d.tar.gz
nixpkgs-5fed5fe917a97e4d9080fe332287df711f49d45d.tar.bz2
nixpkgs-5fed5fe917a97e4d9080fe332287df711f49d45d.tar.lz
nixpkgs-5fed5fe917a97e4d9080fe332287df711f49d45d.tar.xz
nixpkgs-5fed5fe917a97e4d9080fe332287df711f49d45d.tar.zst
nixpkgs-5fed5fe917a97e4d9080fe332287df711f49d45d.zip
Merge pull request #180223 from amjoseph-nixpkgs/pr/mips64el/bootstrap-file-hashes
pkgs/stdenv/linux: add mips64el bootstrap-files
Diffstat (limited to 'pkgs/stdenv/linux')
-rw-r--r--pkgs/stdenv/linux/bootstrap-files/mips64el.nix25
-rw-r--r--pkgs/stdenv/linux/default.nix1
2 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/stdenv/linux/bootstrap-files/mips64el.nix b/pkgs/stdenv/linux/bootstrap-files/mips64el.nix
new file mode 100644
index 00000000000..452a247fb0b
--- /dev/null
+++ b/pkgs/stdenv/linux/bootstrap-files/mips64el.nix
@@ -0,0 +1,25 @@
+#
+# Files came from this Hydra build:
+#
+#   https://hydra.nixos.org/build/182757245
+#
+# Which used nixpkgs revision ef3fe254f3c59455386bc92fe84164f9679b92b1
+# to instantiate:
+#
+#   /nix/store/a2bvv663wjnyhq8m7v84aspsd3sgf9h6-stdenv-bootstrap-tools-mips64el-unknown-linux-gnuabi64.drv
+#
+# and then built:
+#
+#   /nix/store/aw3dmsrh22831l83vi3q9apg9qi3x8ms-stdenv-bootstrap-tools-mips64el-unknown-linux-gnuabi64
+#
+{
+  busybox = import <nix/fetchurl.nix> {
+    url = "http://tarballs.nixos.org/stdenv-linux/mips64el/ef3fe254f3c59455386bc92fe84164f9679b92b1/busybox";
+    sha256 = "sha256-sTE58ofjqAqX3Xtq1g9wDxzIe6Vo//GHbicfqJoivDI=";
+    executable = true;
+  };
+  bootstrapTools =import <nix/fetchurl.nix> {
+    url = "http://tarballs.nixos.org/stdenv-linux/mips64el/ef3fe254f3c59455386bc92fe84164f9679b92b1/bootstrap-tools.tar.xz";
+    sha256 = "sha256-tTgjeXpd2YgnfP4JvRuO0bXd2j8GqzBcd57JI3wH9x0=";
+  };
+}
diff --git a/pkgs/stdenv/linux/default.nix b/pkgs/stdenv/linux/default.nix
index 880286bbcd2..3670f8d8c2b 100644
--- a/pkgs/stdenv/linux/default.nix
+++ b/pkgs/stdenv/linux/default.nix
@@ -16,6 +16,7 @@
       armv7l-linux = import ./bootstrap-files/armv7l.nix;
       aarch64-linux = import ./bootstrap-files/aarch64.nix;
       mipsel-linux = import ./bootstrap-files/loongson2f.nix;
+      mips64el-linux = import ./bootstrap-files/mips64el.nix;
       powerpc64le-linux = import ./bootstrap-files/powerpc64le.nix;
       riscv64-linux = import ./bootstrap-files/riscv64.nix;
     };