-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathflake.nix
185 lines (151 loc) · 4.59 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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
# SPDX-FileCopyrightText: Olivier Le Doeuff <[email protected]>
# SPDX-License-Identifier: MIT
{
description = "QOlm";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
flake-utils.url = "github:numtide/flake-utils";
nix-filter.url = "github:numtide/nix-filter";
};
outputs =
{ self
, nixpkgs
, flake-utils
, nix-filter
}:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
};
qt = pkgs.qt6;
nativeBuildInputs = with pkgs; [
qt.wrapQtAppsHook
makeWrapper
gcc
git
cmake
cpm-cmake
ninja
pkg-config
gtest
];
buildInputsQt = with pkgs.qt6; [
qtbase
qtdeclarative
];
buildInputs = buildInputsQt;
shellHook = ''
# Crazy shell hook to set up Qt environment, from:
# https://discourse.nixos.org/t/python-qt-woes/11808/12
setQtEnvironment=$(mktemp --suffix .setQtEnvironment.sh)
echo "shellHook: setQtEnvironment = $setQtEnvironment"
makeWrapper "/bin/sh" "$setQtEnvironment" "''${qtWrapperArgs[@]}"
sed "/^exec/d" -i "$setQtEnvironment"
source "$setQtEnvironment"
'';
devShellHook = pkgs.lib.concatStringsSep "\n" (
[ shellHook ]
);
version = import ./nix/get-project-version.nix { file = ./CMakeLists.txt; prefix = "QOLM"; };
CPM_USE_LOCAL_PACKAGES = "ON";
packages = {
qolm = with pkgs; stdenv.mkDerivation rec {
inherit version nativeBuildInputs buildInputs;
inherit CPM_USE_LOCAL_PACKAGES;
pname = "qolm";
src = nix-filter {
root = ./.;
include = [
"cmake"
"examples"
"include"
"src"
"tests"
./CMakeLists.txt
];
};
cmakeFlags = [
(pkgs.lib.strings.cmakeBool "BUILD_SHARED_LIBS" true)
(pkgs.lib.strings.cmakeBool "QOLM_ENABLE_TESTS" doCheck)
(pkgs.lib.strings.cmakeBool "QOLM_ENABLE_EXAMPLES" doCheck)
(pkgs.lib.strings.cmakeBool "QOLM_USE_LOCAL_CPM_FILE" true)
];
cmakeConfigType = "Release";
enableParallelBuilding = true;
# Enable debug output folder to exists and be kept
separateDebugInfo = true;
out = [ "out" ];
buildPhase = ''
echo "Building qolm version ${version} in ${cmakeConfigType} mode"
cmake --build . --config ${cmakeConfigType} --target \
QOlm \
--parallel $NIX_BUILD_CORES
'';
doCheck = pkgs.stdenv.hostPlatform == pkgs.stdenv.buildPlatform;
checkPhase = pkgs.lib.optionalString doCheck ''
cmake --build . --config ${cmakeConfigType} --target \
QOlm_Tests \
QOlm_TestsQml \
QOlm_Example \
QOlm_ExampleQml \
--parallel $NIX_BUILD_CORES
echo "Run shell hook"
${shellHook}
export QT_QPA_PLATFORM=offscreen
echo "Run tests"
ctest -C "${cmakeConfigType}" --output-on-failure --verbose
'';
installPhase = ''
cmake --install . --config ${cmakeConfigType} --prefix $out
'';
};
default = packages.qolm;
deadnix = pkgs.runCommand "deadnix" { } ''
${pkgs.deadnix}/bin/deadnix --fail ${./.}
mkdir $out
'';
};
minimalDevBuildInputs = with pkgs; [
gh
];
fullDevBuildInputs = with pkgs; nativeBuildInputs
++ minimalDevBuildInputs
++ [
sccache
nixpkgs-fmt
cmake-format
clang-tools
nurl
lazygit
neovim
]
++ pkgs.lib.lists.optionals (stdenv.isLinux) [
gdb
];
in
{
inherit packages;
devShells = {
minimal = pkgs.mkShell {
name = "qolm-minimal-shell";
inherit buildInputs shellHook;
inherit CPM_USE_LOCAL_PACKAGES;
nativeBuildInputs = nativeBuildInputs
++ minimalDevBuildInputs;
};
default = pkgs.mkShell {
name = "qolm-dev-shell";
inherit buildInputs;
inherit CPM_USE_LOCAL_PACKAGES;
shellHook = devShellHook;
nativeBuildInputs = fullDevBuildInputs;
};
qolm = packages.qolm;
};
formatter = pkgs.nixpkgs-fmt;
checks = {
inherit (self.packages.${system}) deadnix;
};
});
}