blob: 389c646e8b3e4a7cea0ba506cce0593c931a149a (
plain)
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
|
{
description = "A basic gomod2nix flake";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
pre-commit-hooks = {
url = "github:cachix/pre-commit-hooks.nix";
inputs.flake-utils.follows = "flake-utils";
};
gomod2nix = {
url = "github:nix-community/gomod2nix";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "flake-utils";
};
};
simple-css = {
url = "https://raw.githubusercontent.com/kevquirk/simple.css/v2.3.0/simple.css";
flake = false;
};
};
outputs = { self, nixpkgs, flake-utils, gomod2nix, pre-commit-hooks, simple-css }:
(flake-utils.lib.eachDefaultSystem
(system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [
(import ./nix/overlays)
gomod2nix.overlays.default
];
};
# The current default sdk for macOS fails to compile go projects, so we use a newer one for now.
# This has no effect on other platforms.
callPackage = pkgs.darwin.apple_sdk_11_0.callPackage or pkgs.callPackage;
in
{
packages.default = callPackage ./nix/package.nix {
inherit (gomod2nix.legacyPackages.${system}) buildGoApplication;
css = simple-css;
};
devShells.default = callPackage ./nix/dev-shell.nix {
pre-commit-check = {
inherit (self.checks.${system}.pre-commit-check)
shellHook
enabledPackages;
};
inherit (gomod2nix.legacyPackages.${system}) mkGoEnv gomod2nix;
};
checks = {
pre-commit-check = pre-commit-hooks.lib.${system}.run (
import ./nix/pre-commit-checks.nix {
inherit pkgs;
}
);
};
})
);
}
|