1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
nix-filter.url = "github:numtide/nix-filter";
gomod2nix = {
url = "github:nix-community/gomod2nix";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.follows = "flake-utils";
};
};
outputs =
{
self,
nixpkgs,
flake-utils,
nix-filter,
...
}@inputs:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [
inputs.gomod2nix.overlays.default
];
};
git-pages-cli = pkgs.buildGoApplication {
pname = "git-pages-cli";
version = "0";
src = nix-filter {
root = self;
include = [
"go.mod"
"go.sum"
"main.go"
];
};
buildInputs = with pkgs; [
pkgsStatic.musl
];
ldflags = [
"-linkmode external"
"-extldflags -static"
"-s -w"
];
go = pkgs.go_1_25;
modules = ./gomod2nix.toml;
};
in
{
formatter = pkgs.nixfmt-tree;
devShells.default = pkgs.mkShell {
inputsFrom = [
git-pages-cli
];
packages = with pkgs; [
gomod2nix
];
};
packages = {
inherit git-pages-cli;
default = git-pages-cli;
};
}
);
}
|