Switch from buildGoModule in nixpkgs to gomod2nix

This commit is contained in:
Jim Clark
2023-04-25 16:48:25 -07:00
committed by James Carnegie
parent 63d3cc2f0a
commit 5ef7e9ef1c
3 changed files with 709 additions and 27 deletions

View File

@@ -4,48 +4,49 @@
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/release-22.11";
flake-utils.url = "github:numtide/flake-utils";
gomod2nix.url = "github:nix-community/gomod2nix";
};
outputs = { self, nixpkgs, flake-utils }:
outputs = { self, nixpkgs, flake-utils, gomod2nix }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
pkgs = import nixpkgs
{
inherit system;
overlays = [ gomod2nix.overlays.default ];
};
in
{
devShells.default = pkgs.mkShell {
packages = with pkgs; [ go gotools golangci-lint gopls gopkgs go-outline ];
packages = with pkgs; [ go gotools golangci-lint gopls gopkgs go-outline gomod2nix.packages.${system}.default ];
};
packages = rec {
default = pkgs.buildGoModule {
default = pkgs.buildGoApplication {
pname = "babashka-pod-docker";
version = "0.0.1";
src = ./.;
# uncomment this and re-run to find the new vendor sha when module deps change
# note that you'll get inconsistent vendor deps if this gets out of sync because
# this sha defines the input for the mod deps derivation
# vendorSha256 = nixpkgs.lib.fakeSha256;
vendorSha256 = "sha256-jCjNhi0eqEBNPts/xmbwugs0T6HUw1ESip/li4/J6YY=";
CGO_ENABLED = 0;
pwd = ./.;
CGO_ENABLED = 0;
modules = ./gomod2nix.toml;
};
docker = pkgs.dockerTools.buildImage {
name = "docker-pod";
tag = "latest";
config = {
Cmd = ["${default}/bin/babashka-pod-docker"];
};
};
docker = pkgs.dockerTools.buildImage {
name = "docker-pod";
tag = "latest";
config = {
Cmd = [ "${default}/bin/babashka-pod-docker" ];
};
};
default-linux = default.overrideAttrs (old: old // {GOOS = "linux"; GOARCH = "arm64";});
docker-arm64 = pkgs.dockerTools.buildImage {
name = "docker-pod";
tag = "latest";
config = {
Cmd = ["${default-linux}/bin/linux_arm64/babashka-pod-docker"];
};
};
default-linux = default.overrideAttrs (old: old // { GOOS = "linux"; GOARCH = "arm64"; });
docker-arm64 = pkgs.dockerTools.buildImage {
name = "docker-pod";
tag = "latest";
config = {
Cmd = [ "${default-linux}/bin/linux_arm64/babashka-pod-docker" ];
};
};
};
});
}