Skip to content

Commit

Permalink
add riscv64 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 committed Jul 25, 2024
1 parent 31b6d2e commit 53eb7cd
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,15 @@
};
defaultTemplate = self.templates.app;

} //
(flake-utils.lib.eachDefaultSystem
(system:
}
// (flake-utils.lib.eachSystem
[
"x86_64-linux"
"aarch64-linux"
"riscv64-linux"

This comment has been minimized.

Copy link
@marcusramberg

marcusramberg Aug 2, 2024

Collaborator

Seems like this removes support for darwin?

]
(
system:
let
pkgs = nixpkgs.legacyPackages.${system};

Expand All @@ -44,6 +50,7 @@
devShells.default = callPackage ./shell.nix {
inherit mkGoEnv gomod2nix;
};
})
}
)
);
}

0 comments on commit 53eb7cd

Please sign in to comment.