gomod2nix/flake.nix

51 lines
1.4 KiB
Nix
Raw Normal View History

2020-10-29 12:56:41 +00:00
{
description = "Convert go.mod/go.sum to Nix packages";
2022-07-20 03:42:46 +00:00
inputs.nixpkgs.url = "github:NixOS/nixpkgs/master";
2020-10-29 12:56:41 +00:00
inputs.utils.url = "github:numtide/flake-utils";
2021-03-16 23:08:52 +00:00
outputs = { self, nixpkgs, utils }:
2020-12-03 15:16:08 +00:00
{
overlays.default = import ./overlay.nix;
2022-05-30 11:09:22 +00:00
templates = {
app = {
path = ./templates/app;
description = "Gomod2nix packaged application";
};
};
defaultTemplate = self.templates.app;
2021-03-16 23:08:52 +00:00
} //
(utils.lib.eachDefaultSystem
(system:
let
pkgs = nixpkgs.legacyPackages.${system};
# The newer Darwin SDK does not exist in current (nixos-22.05) stable
# branches, so just fallback to the default callPackage.
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;
2021-03-16 23:08:52 +00:00
};
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;
};
2021-03-16 23:08:52 +00:00
})
);
2020-10-29 12:56:41 +00:00
}