Skip to content

Commit

Permalink
Update Nix derivation to build against 22.05 and LLVM 11 (#601)
Browse files Browse the repository at this point in the history
Also enable AArch64.
  • Loading branch information
elliottslaughter authored Aug 18, 2022
1 parent 6c3be67 commit 0cf6be6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
nixpkgs: ['unstable', '21.05']
nixpkgs: ['unstable', '22.05']
cuda: ['false', 'true']
steps:
- uses: actions/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

let

llvmPackages = pkgs.llvmPackages_10;
llvmPackages = pkgs.llvmPackages_11;
stdenv = llvmPackages.stdenv;
cuda = if cudaPackages ? cudatoolkit_11 then [
cudaPackages.cudatoolkit_11
Expand Down Expand Up @@ -91,7 +91,7 @@ in stdenv.mkDerivation rec {
meta = with lib; {
description = "A low-level counterpart to Lua";
homepage = "http://terralang.org/";
platforms = platforms.x86_64;
platforms = platforms.x86_64 ++ platforms.aarch64;
maintainers = with maintainers; [ jb55 thoughtpolice ];
license = licenses.mit;
};
Expand Down

0 comments on commit 0cf6be6

Please sign in to comment.