-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
152 lines (148 loc) · 4.29 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
crane.url = "github:ipetkov/crane";
crane.inputs.nixpkgs.follows = "nixpkgs";
nix-github-actions.url = "github:IGI-111/nix-github-actions?ref=IGI-111/add-aarch64-darwin";
nix-github-actions.inputs.nixpkgs.follows = "nixpkgs";
};
outputs =
{
self,
nixpkgs,
crane,
flake-utils,
nix-github-actions,
...
}:
let
buildPackageForSystem =
{
pkgs,
buildInputs,
nativeBuildInputs,
}:
let
craneLib = crane.mkLib pkgs;
libPath = pkgs.lib.makeLibraryPath buildInputs;
src =
let
# Only keeps slint files
dirFilter = path: _type: builtins.match ".*(assets|src|ui)/.*$" path != null;
slintFilter = path: _type: builtins.match ".*slint$" path != null;
sourceFilter =
path: type:
(dirFilter path type) || (slintFilter path type) || (craneLib.filterCargoSources path type);
in
nixpkgs.lib.cleanSourceWith {
src = craneLib.path ./.;
filter = sourceFilter;
};
cargoArtifacts = craneLib.buildDepsOnly {
inherit src buildInputs nativeBuildInputs;
LD_LIBRARY_PATH = libPath;
};
kira = craneLib.buildPackage {
inherit
src
buildInputs
nativeBuildInputs
cargoArtifacts
;
doNotSign = true; # FIXME: disable apple binary signature
LD_LIBRARY_PATH = libPath;
};
in
{
defaultPackage = kira;
checks = {
inherit kira;
kira-clippy = craneLib.cargoClippy {
inherit
src
buildInputs
nativeBuildInputs
cargoArtifacts
;
cargoClippyExtraArgs = "--all-targets -- --deny warnings";
};
kira-fmt = craneLib.cargoFmt { inherit src; };
};
devShell = pkgs.mkShell {
inherit buildInputs nativeBuildInputs;
LD_LIBRARY_PATH = libPath;
};
};
buildPackageDeps = {
"x86_64-linux" =
let
pkgs = nixpkgs.legacyPackages.x86_64-linux;
in
{
inherit pkgs;
buildInputs = with pkgs; [
xorg.libXi
xorg.libX11
xorg.libXcursor
libxkbcommon
fontconfig
libGL
wayland
openssl
];
nativeBuildInputs = with pkgs; [
rustc
cargo
rustfmt
rustPackages.clippy
rust-analyzer
slint-lsp
pkg-config
# kdialog
];
};
"aarch64-darwin" =
let
pkgs = nixpkgs.legacyPackages.aarch64-darwin;
in
{
inherit pkgs;
buildInputs = with pkgs; [
openssl
darwin.signingUtils
darwin.libiconv
darwin.libobjc
# darwin.xcode
# darwin.apple_sdk.sdk
darwin.apple_sdk.Libsystem
# darwin.apple_sdk.frameworks
darwin.apple_sdk.frameworks.SystemConfiguration
darwin.apple_sdk.frameworks.AppKit
darwin.apple_sdk.frameworks.CoreFoundation
darwin.apple_sdk.frameworks.Cocoa
darwin.apple_sdk.frameworks.Security
];
nativeBuildInputs = with pkgs; [
rustc
cargo
rustfmt
rustPackages.clippy
rust-analyzer
slint-lsp
pkg-config
uutils-coreutils
findutils
];
};
};
in
{
githubActions = nix-github-actions.lib.mkGithubMatrix { inherit (self) checks; };
}
// flake-utils.lib.eachSystem [
"x86_64-linux"
# "x86_64-darwin"
"aarch64-darwin"
] (system: buildPackageForSystem buildPackageDeps."${system}");
}