Compare commits

..

No commits in common. "main" and "v0.1.0" have entirely different histories.
main ... v0.1.0

4 changed files with 2 additions and 66 deletions

View File

@ -6,7 +6,7 @@ builds:
- windows
- darwin
ldflags:
- "-s -w -X main.Version={{.Version}}"
- "-s -w -X go.jolheiser.com/gomodinit.Version={{.Version}}"
archives:
- replacements:
386: i386

View File

@ -10,6 +10,7 @@ pipeline:
commands:
- go test -race ./...
- go vet ./...
- go run github.com/rs/zerolog/cmd/lint@latest go.jolheiser.com/gomodinit
when:
event: pull_request

View File

@ -1,26 +0,0 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1703206931,
"narHash": "sha256-GHJl3HHdH4jWjRVBuyDRIaUoNNMTuVbw0i9+EaYzcBU=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "bfbfb344598544058481e254b9f0f174d05b5e6a",
"type": "github"
},
"original": {
"owner": "nixos",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

View File

@ -1,39 +0,0 @@
{
description = "go mod init";
inputs.nixpkgs.url = "github:nixos/nixpkgs";
outputs = {
self,
nixpkgs,
}: let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
packages.${system}.default = pkgs.buildGoModule rec {
pname = "gomodinit";
version = "0.1.1";
src = ./.;
vendorHash = "sha256-7RMTRFHYgzQD7K5JDdjV7ABg6BpCZbQXS9gSRlm27X8=";
ldflags = [
"-s"
"-w"
"-X=main.Version=${version}"
];
meta = with pkgs.lib; {
description = "go mod init";
homepage = "https://git.jojodev.com/jolheiser/gomodinit";
maintainers = with maintainers; [jolheiser];
mainProgram = "gomodinit";
};
};
devShells.${system}.default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
go
gopls
];
};
};
}