forked from goreleaser/goreleaser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
51 lines (48 loc) · 1.44 KB
/
flake.nix
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
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
carlos.url = "github:caarlos0/nur";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { nixpkgs, carlos, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
cpkgs = carlos.packages.${system};
in
{
packages.default = pkgs.buildGoModule {
pname = "goreleaser";
version = "unversioned";
src = ./.;
ldflags = [ "-s" "-w" "-X main.version=dev" "-X main.builtBy=flake" ];
doCheck = false;
vendorHash = "";
};
devShells.default = pkgs.mkShellNoCC {
packages = with pkgs; [
go_1_22
go-task
gofumpt
syft
upx
cosign
gnupg
nix-prefetch
];
shellHook = "go mod tidy";
};
devShells.docs = pkgs.mkShellNoCC {
packages = with pkgs; with pkgs.python311Packages; [
go-task
htmltest
mkdocs-material
mkdocs-redirects
mkdocs-minify
cpkgs.mkdocs-rss-plugin # https://github.com/NixOS/nixpkgs/pull/277350
cpkgs.mkdocs-include-markdown-plugin # https://github.com/NixOS/nixpkgs/pull/277351
] ++ mkdocs-material.passthru.optional-dependencies.git;
};
}
);
}