forked from kivikakk/comrak
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
106 lines (88 loc) · 2.46 KB
/
flake.nix
File metadata and controls
106 lines (88 loc) · 2.46 KB
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
{
description = "comrak";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
crane.url = "github:ipetkov/crane";
fenix = {
url = "github:nix-community/fenix/monthly";
inputs.nixpkgs.follows = "nixpkgs";
};
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{
self,
nixpkgs,
crane,
fenix,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs { inherit system; };
inherit (pkgs) lib;
craneLib = crane.mkLib pkgs;
src = craneLib.cleanCargoSource (craneLib.path ./.);
commonArgs = {
inherit src;
buildInputs = lib.optionals pkgs.stdenv.isDarwin [ pkgs.libiconv ];
};
cargoArtifacts = craneLib.buildDepsOnly commonArgs;
comrak = craneLib.buildPackage (
commonArgs
// {
inherit cargoArtifacts;
doCheck = false;
}
);
in
{
checks = {
inherit comrak;
comrak-clippy = craneLib.cargoClippy (
commonArgs
// {
inherit cargoArtifacts;
# cargoClippyExtraArgs = "--lib --bins --examples --tests -- --deny warnings";
# XXX Not sure if we can fix all these and retain our current MSRV.
cargoClippyExtraArgs = "--lib --bins --examples --tests";
}
);
comrak-doc = craneLib.cargoDoc (commonArgs // { inherit cargoArtifacts; });
comrak-fmt = craneLib.cargoFmt { inherit src; };
comrak-nextest = craneLib.cargoNextest (
commonArgs
// {
inherit cargoArtifacts;
partitions = 1;
partitionType = "count";
}
);
};
packages = {
default = comrak;
};
apps.default = flake-utils.lib.mkApp { drv = comrak; };
formatter = pkgs.nixfmt-rfc-style;
devShells.default = pkgs.mkShell {
name = "comrak";
packages = [
(fenix.packages.${system}.complete.withComponents [
"cargo"
"rustc"
"rust-analyzer"
"clippy"
"rustfmt"
"rust-src"
])
pkgs.rust-analyzer
pkgs.clippy
pkgs.cargo-fuzz
pkgs.python3
pkgs.re2c
];
};
}
);
}