Compare commits

...

2 Commits
v0.1.0 ... main

Author SHA1 Message Date
jolheiser 6686d64913
feat: flake
ci/woodpecker/push/goreleaser Pipeline was successful Details
Signed-off-by: jolheiser <john.olheiser@gmail.com>
2023-12-21 19:04:53 -06:00
jolheiser 0ee47079f0
Fix version
ci/woodpecker/push/goreleaser Pipeline was successful Details
ci/woodpecker/tag/goreleaser Pipeline was successful Details
Signed-off-by: jolheiser <john.olheiser@gmail.com>
2022-07-24 23:40:37 -05:00
4 changed files with 66 additions and 2 deletions

View File

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

View File

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

26
flake.lock 100644
View File

@ -0,0 +1,26 @@
{
"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
}

39
flake.nix 100644
View File

@ -0,0 +1,39 @@
{
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
];
};
};
}