-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathflake.nix
39 lines (36 loc) · 1 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
{
description = "FQDN Policy";
inputs.nixpkgs.url = "nixpkgs/nixos-unstable";
outputs = {
self,
nixpkgs,
}: let
version = builtins.substring 0 8 (self.lastModifiedDate or self.lastModified or "19700101");
goOverlay = final: prev: {
go = prev.go.overrideAttrs (old: {
version = "1.22.5";
src = prev.fetchurl {
url = "https://go.dev/dl/go1.22.5.src.tar.gz";
hash = "sha256-rJxyPyJJaa7mJLw0/TTJ4T8qIS11xxyAfeZEu0bhEvY=";
};
});
};
withSystem = nixpkgs.lib.genAttrs ["x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin"];
withPkgs = callback:
withSystem (
system:
callback
(import nixpkgs {
inherit system;
overlays = [goOverlay];
})
);
in {
devShells = withPkgs (pkgs: {
default = pkgs.mkShell {
buildInputs = with pkgs; [go gopls gotools go-tools];
};
});
formatter = withPkgs (pkgs: pkgs.nixfmt-rfc-style);
};
}