tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
oxlint: 1.6.0 -> 1.12.0
Joseph LaFreniere
5 months ago
8fa36c60
85e40bd9
+5
-3
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
ox
oxlint
package.nix
+5
-3
pkgs/by-name/ox/oxlint/package.nix
···
2
lib,
3
rustPlatform,
4
fetchFromGitHub,
0
5
nix-update-script,
6
rust-jemalloc-sys,
7
versionCheckHook,
···
9
10
rustPlatform.buildRustPackage (finalAttrs: {
11
pname = "oxlint";
12
-
version = "1.6.0";
13
14
src = fetchFromGitHub {
15
owner = "oxc-project";
16
repo = "oxc";
17
tag = "oxlint_v${finalAttrs.version}";
18
-
hash = "sha256-URgz9k89WgYfCu9OlNCZk5wRt8upt58rIxFWa90L+OQ=";
19
};
20
21
-
cargoHash = "sha256-s1UXL+y/BISOnPJmdpQFztYRd5je9C8jcc+e+iWtRuU=";
22
0
23
buildInputs = [
24
rust-jemalloc-sys
25
];
···
2
lib,
3
rustPlatform,
4
fetchFromGitHub,
5
+
cmake,
6
nix-update-script,
7
rust-jemalloc-sys,
8
versionCheckHook,
···
10
11
rustPlatform.buildRustPackage (finalAttrs: {
12
pname = "oxlint";
13
+
version = "1.12.0";
14
15
src = fetchFromGitHub {
16
owner = "oxc-project";
17
repo = "oxc";
18
tag = "oxlint_v${finalAttrs.version}";
19
+
hash = "sha256-HH98Q4mvCrylnRmvmfqKksF3ECT3rkoT93bSTqV4xOY=";
20
};
21
22
+
cargoHash = "sha256-lAEAOB6JkIkwckhwXU2/fRMkGOkEZnNtiyx/Xm+0JKc=";
23
24
+
nativeBuildInputs = [ cmake ];
25
buildInputs = [
26
rust-jemalloc-sys
27
];