mirror of
https://github.com/tweag/gomod2nix.git
synced 2024-11-05 01:59:08 +00:00
3f884fa2bf
Fixes a regression where darwin support was deleted. We now take the full default value of `defaultSystems` from flake-utils and add riscv to it.
58 lines
1.6 KiB
Nix
58 lines
1.6 KiB
Nix
{
|
|
description = "Convert go.mod/go.sum to Nix packages";
|
|
|
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/master";
|
|
inputs.flake-utils.url = "github:numtide/flake-utils";
|
|
|
|
outputs = { self, nixpkgs, flake-utils }:
|
|
{
|
|
overlays.default = import ./overlay.nix;
|
|
|
|
templates = {
|
|
app = {
|
|
path = ./templates/app;
|
|
description = "Gomod2nix packaged application";
|
|
};
|
|
};
|
|
defaultTemplate = self.templates.app;
|
|
|
|
}
|
|
// (flake-utils.lib.eachSystem
|
|
[
|
|
"aarch64-linux"
|
|
"aarch64-darwin"
|
|
"x86_64-darwin"
|
|
"x86_64-linux"
|
|
"riscv64-linux"
|
|
]
|
|
(
|
|
system:
|
|
let
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
|
|
# The current default sdk for macOS fails to compile go projects, so we use a newer one for now.
|
|
# This has no effect on other platforms.
|
|
callPackage = pkgs.darwin.apple_sdk_11_0.callPackage or pkgs.callPackage;
|
|
|
|
inherit (callPackage ./builder {
|
|
inherit gomod2nix;
|
|
}) mkGoEnv buildGoApplication;
|
|
gomod2nix = callPackage ./default.nix {
|
|
inherit mkGoEnv buildGoApplication;
|
|
};
|
|
in
|
|
{
|
|
packages.default = gomod2nix;
|
|
legacyPackages = {
|
|
# we cannot put them in packages because they are builder functions
|
|
inherit mkGoEnv buildGoApplication;
|
|
# just have this here for convenience
|
|
inherit gomod2nix;
|
|
};
|
|
devShells.default = callPackage ./shell.nix {
|
|
inherit mkGoEnv gomod2nix;
|
|
};
|
|
}
|
|
)
|
|
);
|
|
}
|