tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
nixf: 2.6.3 -> 2.6.4
Yingchi Long
8 months ago
87bdc66d
0d7386c1
+5
-8
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
language-servers
nixd
default.nix
+5
-8
pkgs/development/tools/language-servers/nixd/default.nix
···
20
20
}:
21
21
22
22
let
23
23
+
nix = nixVersions.nix_2_28;
23
24
common = rec {
24
24
-
version = "2.6.3";
25
25
+
version = "2.6.4";
25
26
26
27
src = fetchFromGitHub {
27
28
owner = "nix-community";
28
29
repo = "nixd";
29
30
tag = version;
30
30
-
hash = "sha256-Gd7VFyQ/ayw0NI72sdZ1wFuXaxlIPWyE31Kl53d3zB4=";
31
31
+
hash = "sha256-K7S626SPzlNCmRhntSKhGP1iyHJXBZEeHliX4iEwbKk=";
31
32
};
32
33
33
34
nativeBuildInputs = [
···
101
102
];
102
103
103
104
buildInputs = [
104
104
-
nixVersions.nix_2_24
105
105
+
nix
105
106
gtest
106
107
boost
107
108
];
108
108
-
109
109
-
env.CXXFLAGS = "-include ${nixVersions.nix_2_24.dev}/include/nix/config.h";
110
109
111
110
passthru.tests.pkg-config = testers.hasPkgConfigModules {
112
111
package = nixt;
···
127
126
sourceRoot = "${common.src.name}/nixd";
128
127
129
128
buildInputs = [
130
130
-
nixVersions.nix_2_24
129
129
+
nix
131
130
nixf
132
131
nixt
133
132
llvmPackages.llvm
···
136
135
];
137
136
138
137
nativeBuildInputs = common.nativeBuildInputs ++ [ cmake ];
139
139
-
140
140
-
env.CXXFLAGS = "-include ${nixVersions.nix_2_24.dev}/include/nix/config.h";
141
138
142
139
# See https://github.com/nix-community/nixd/issues/519
143
140
doCheck = false;