Skip to content

Commit

Permalink
Merge pull request #4867 from Kloenk/stable-aarch64-darwin
Browse files Browse the repository at this point in the history
enable aarch64-darwin in release.nix
  • Loading branch information
domenkozar authored Jun 7, 2021
2 parents cc565be + 29e8db9 commit b98a50a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions release.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ nix ? builtins.fetchGit ./.
, nixpkgs ? builtins.fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-20.03.tar.gz
, nixpkgs ? builtins.fetchTarball https://github.com/NixOS/nixpkgs/archive/nixos-21.05-small.tar.gz
, officialRelease ? false
, systems ? [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" ]
, systems ? [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ]
}:

let
Expand Down Expand Up @@ -315,7 +315,7 @@ let
substitute ${./scripts/install.in} $out/install \
${pkgs.lib.concatMapStrings
(system: "--replace '@binaryTarball_${system}@' $(nix hash-file --base16 --type sha256 ${binaryTarball.${system}}/*.tar.xz) ")
[ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" ]
[ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-darwin" "aarch64-linux" ]
} \
--replace '@nixVersion@' ${build.x86_64-linux.src.version}
Expand Down

0 comments on commit b98a50a

Please sign in to comment.