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
}:
21
22
let
0
23
common = rec {
24
-
version = "2.6.3";
25
26
src = fetchFromGitHub {
27
owner = "nix-community";
28
repo = "nixd";
29
tag = version;
30
-
hash = "sha256-Gd7VFyQ/ayw0NI72sdZ1wFuXaxlIPWyE31Kl53d3zB4=";
31
};
32
33
nativeBuildInputs = [
···
101
];
102
103
buildInputs = [
104
-
nixVersions.nix_2_24
105
gtest
106
boost
107
];
108
-
109
-
env.CXXFLAGS = "-include ${nixVersions.nix_2_24.dev}/include/nix/config.h";
110
111
passthru.tests.pkg-config = testers.hasPkgConfigModules {
112
package = nixt;
···
127
sourceRoot = "${common.src.name}/nixd";
128
129
buildInputs = [
130
-
nixVersions.nix_2_24
131
nixf
132
nixt
133
llvmPackages.llvm
···
136
];
137
138
nativeBuildInputs = common.nativeBuildInputs ++ [ cmake ];
139
-
140
-
env.CXXFLAGS = "-include ${nixVersions.nix_2_24.dev}/include/nix/config.h";
141
142
# See https://github.com/nix-community/nixd/issues/519
143
doCheck = false;
···
20
}:
21
22
let
23
+
nix = nixVersions.nix_2_28;
24
common = rec {
25
+
version = "2.6.4";
26
27
src = fetchFromGitHub {
28
owner = "nix-community";
29
repo = "nixd";
30
tag = version;
31
+
hash = "sha256-K7S626SPzlNCmRhntSKhGP1iyHJXBZEeHliX4iEwbKk=";
32
};
33
34
nativeBuildInputs = [
···
102
];
103
104
buildInputs = [
105
+
nix
106
gtest
107
boost
108
];
0
0
109
110
passthru.tests.pkg-config = testers.hasPkgConfigModules {
111
package = nixt;
···
126
sourceRoot = "${common.src.name}/nixd";
127
128
buildInputs = [
129
+
nix
130
nixf
131
nixt
132
llvmPackages.llvm
···
135
];
136
137
nativeBuildInputs = common.nativeBuildInputs ++ [ cmake ];
0
0
138
139
# See https://github.com/nix-community/nixd/issues/519
140
doCheck = false;