Skip to content

Commit

Permalink
chore(dev-deps): enable aarch64-linux dev envs (#9331)
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud authored Jun 7, 2024
1 parent 1055ce3 commit 790a7b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/nix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ jobs:
nix build ".#ibis${version//./}" --fallback --keep-going --print-build-logs
- name: nix build devShell
if: github.event_name == 'push'
run: |
set -euo pipefail
Expand Down
4 changes: 3 additions & 1 deletion nix/quarto/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@
let
platforms = {
"x86_64-linux" = "linux-amd64";
"aarch64-linux" = "linux-arm64";
"aarch64-darwin" = "macos";
};
shas = {
"x86_64-linux" = "sha256-X+VgTY649Vo37u8byNzLD+KPVK3MRdySAPN0ZhdBw0g=";
"aarch64-linux" = "sha256-xOfh+lrLEaU2ph20COBBg+PuZjzNZwD1NSGjcCyoL1I=";
"aarch64-darwin" = "sha256-yK0y7gnYWKO5vRBoBtYva3cmIL4ddoeYhn2Gor/NUCs=";
};
inherit (stdenv.hostPlatform) system;
Expand Down Expand Up @@ -66,7 +68,7 @@ stdenv.mkDerivation rec {
changelog = "https://github.com/quarto-dev/quarto-cli/releases/tag/v${version}";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ mrtarantoga ];
platforms = [ "x86_64-linux" "aarch64-darwin" ];
platforms = [ "x86_64-linux" "aarch64-linux" "aarch64-darwin" ];
sourceProvenance = with sourceTypes; [ binaryNativeCode binaryBytecode ];
};
}

0 comments on commit 790a7b9

Please sign in to comment.