-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathflake.nix
58 lines (57 loc) · 1.43 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
51
52
53
54
55
56
57
58
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
};
outputs =
inputs:
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
systems = [
"aarch64-linux"
"x86_64-linux"
"x86_64-darwin"
"aarch64-darwin"
];
imports = [
inputs.flake-parts.flakeModules.easyOverlay
];
perSystem =
{
config,
system,
pkgs,
...
}:
{
overlayAttrs = {
inherit (config.packages) talhelper;
};
_module.args.pkgs = import inputs.nixpkgs {
inherit system;
overlays = [
(final: prev: {
go_1_23 = prev.go_1_23.overrideAttrs (old: {
src = prev.fetchurl {
url = "https://go.dev/dl/go1.23.4.src.tar.gz";
hash = "sha256-rTRaxCHpCBQpOpaZzKGd1SOCUcP2h5gLvK4oSVsmNTE=";
};
});
})
];
};
packages = rec {
default = talhelper;
talhelper = pkgs.callPackage ./default.nix { };
};
devShells.default =
with pkgs;
mkShell {
name = "talhelper-dev";
packages = [
gcc
go_1_23
];
};
};
};
}