-
-
Notifications
You must be signed in to change notification settings - Fork 309
/
Copy pathflake.nix
69 lines (63 loc) · 1.79 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
59
60
61
62
63
64
65
66
67
68
{
description = "elvish";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
gomod2nix = {
url = "github:nix-community/gomod2nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, gomod2nix }:
let
allSystems = [
"x86_64-linux" # 64-bit Intel/AMD Linux
"aarch64-linux" # 64-bit ARM Linux
"x86_64-darwin" # 64-bit Intel macOS
"aarch64-darwin" # 64-bit ARM macOS
];
forAllSystems = f: nixpkgs.lib.genAttrs allSystems (system: f {
inherit system;
pkgs = import nixpkgs { inherit system; };
});
in
{
packages = forAllSystems ({ system, pkgs, ... }:
let
buildGoApplication = gomod2nix.legacyPackages.${system}.buildGoApplication;
in
rec {
default = elvish;
elvish = buildGoApplication {
name = "elvish";
src = ./.;
go = pkgs.go_1_22;
pwd = ./.;
subPackages = [ "cmd/elvish" ];
CGO_ENABLED = 0;
flags = [
"-trimpath"
];
ldflags = [
"-s"
"-w"
"-extldflags -static"
];
};
});
# "nix develop" provides a shell containing development tools.
#
# "nix develop --command gomod2nix" should be run to update gomod2nix.toml
# after updating Go module dependencies.
devShell = forAllSystems ({ system, pkgs }:
pkgs.mkShell {
buildInputs = with pkgs; [
go_1_22
gomod2nix.legacyPackages.${system}.gomod2nix
gopls
];
});
overlays.default = final: prev: {
elvish = self.packages.${final.stdenv.system}.elvish;
};
};
}