-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
74 lines (63 loc) · 2.05 KB
/
flake.nix
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
{
description = "Optimization as a service TUI";
inputs = {
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/*.tar.gz";
cargo2nix.url = "github:cargo2nix/cargo2nix/release-0.11.0";
flake-utils.url = "github:numtide/flake-utils/v1.0.0";
};
outputs = inputs: with inputs;
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; overlays = [ cargo2nix.overlays.default ]; };
inherit (pkgs) lib;
rustPackageSet = pkgs.rustBuilder.makePackageSet {
rustVersion = "1.71.1";
packageFun = import ./Cargo.nix;
extraRustComponents = [ "rustfmt" "clippy" ];
};
isLinux = lib.strings.hasSuffix "-linux" system;
linuxDependencies = lib.optionals isLinux [
pkgs.cargo-llvm-cov
];
isDarwin = lib.strings.hasSuffix "-darwin" system;
darwinDependencies = lib.optionals isDarwin [
pkgs.darwin.apple_sdk.frameworks.SystemConfiguration
];
generalBuildInputs = [
pkgs.cargo-nextest
pkgs.gitlab-clippy
pkgs.mold
pkgs.openssl
pkgs.openssl.dev
pkgs.pkg-config
pkgs.rustup
] ++ linuxDependencies ++ darwinDependencies;
napali = args: (rustPackageSet.workspace.napali ({ } // args)).overrideAttrs {
buildInputs = generalBuildInputs;
};
workspaceShell = rustPackageSet.workspaceShell {
RUSTFLAGS = "--cfg tokio_unstable";
packages = generalBuildInputs;
};
in
rec
{
packages = {
default = napali { };
tests = napali { compileMode = "test"; };
ci = pkgs.rustBuilder.runTests napali { };
};
devShell = workspaceShell;
image = pkgs.dockerTools.buildLayeredImage {
name = "napali";
tag = "latest";
maxLayers = 120;
contents = [
pkgs.cacert
packages.default
];
config.Cmd = [ "napali" ];
};
}
);
}