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
|
{
lib,
stdenv,
fetchFromGitHub,
cmake,
boost,
gtest,
llvmPackages,
meson,
ninja,
nixVersions,
nix-update-script,
nixd,
nixf,
nixt,
nlohmann_json,
pkg-config,
testers,
python3,
}:
let
common = rec {
version = "2.6.3";
src = fetchFromGitHub {
owner = "nix-community";
repo = "nixd";
tag = version;
hash = "sha256-Gd7VFyQ/ayw0NI72sdZ1wFuXaxlIPWyE31Kl53d3zB4=";
};
nativeBuildInputs = [
meson
ninja
python3
pkg-config
];
mesonBuildType = "release";
strictDeps = true;
doCheck = true;
meta = {
homepage = "https://github.com/nix-community/nixd";
changelog = "https://github.com/nix-community/nixd/releases/tag/${version}";
license = lib.licenses.lgpl3Plus;
maintainers = with lib.maintainers; [
inclyc
Ruixi-rebirth
aleksana
redyf
];
platforms = lib.platforms.unix;
};
};
in
{
nixf = stdenv.mkDerivation (
common
// {
pname = "nixf";
sourceRoot = "${common.src.name}/libnixf";
outputs = [
"out"
"dev"
];
buildInputs = [
gtest
boost
nlohmann_json
];
passthru.tests.pkg-config = testers.hasPkgConfigModules {
package = nixf;
moduleNames = [ "nixf" ];
};
meta = common.meta // {
description = "Nix language frontend, parser & semantic analysis";
mainProgram = "nixf-tidy";
};
}
);
nixt = stdenv.mkDerivation (
common
// {
pname = "nixt";
sourceRoot = "${common.src.name}/libnixt";
outputs = [
"out"
"dev"
];
buildInputs = [
nixVersions.nix_2_24
gtest
boost
];
env.CXXFLAGS = "-include ${nixVersions.nix_2_24.dev}/include/nix/config.h";
passthru.tests.pkg-config = testers.hasPkgConfigModules {
package = nixt;
moduleNames = [ "nixt" ];
};
meta = common.meta // {
description = "Supporting library that wraps C++ nix";
};
}
);
nixd = stdenv.mkDerivation (
common
// {
pname = "nixd";
sourceRoot = "${common.src.name}/nixd";
buildInputs = [
nixVersions.nix_2_24
nixf
nixt
llvmPackages.llvm
gtest
boost
];
nativeBuildInputs = common.nativeBuildInputs ++ [ cmake ];
env.CXXFLAGS = "-include ${nixVersions.nix_2_24.dev}/include/nix/config.h";
# See https://github.com/nix-community/nixd/issues/519
doCheck = false;
passthru = {
updateScript = nix-update-script { };
tests.version = testers.testVersion { package = nixd; };
};
meta = common.meta // {
description = "Feature-rich Nix language server interoperating with C++ nix";
mainProgram = "nixd";
};
}
);
}
|