-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
flake.nix
77 lines (65 loc) · 2.04 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
75
76
77
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
systems.url = "github:nix-systems/default";
fenix = {
url = "github:nix-community/fenix";
inputs.nixpkgs.follows = "nixpkgs";
};
rust-manifest = {
url = "https://static.rust-lang.org/dist/channel-rust-1.81.0.toml";
flake = false;
};
};
outputs = inputs@{ nixpkgs, flake-parts, systems, fenix, rust-manifest, ... }:
let
expressions = import ./nix;
in
flake-parts.lib.mkFlake { inherit inputs; } {
systems = import systems;
flake = {
lib = { inherit (expressions) loadGlistixPackage; };
};
imports = [
flake-parts.flakeModules.easyOverlay
./nix/flake-builders.nix
];
perSystem = { self', pkgs, lib, system, ... }:
let
rust-toolchain = (fenix.packages.${system}.fromManifestFile rust-manifest).defaultToolchain;
rustPlatform = pkgs.makeRustPlatform {
cargo = rust-toolchain;
rustc = rust-toolchain;
};
glistix = pkgs.callPackage expressions.glistix { inherit rustPlatform; };
in
{
formatter = pkgs.nixpkgs-fmt;
builders.buildGlistixPackage =
pkgs.callPackage
expressions.buildGlistixPackage
{ glistix = self'.packages.default; };
packages = {
default = glistix;
glistix-dev = self'.packages.default;
};
apps.default = {
type = "app";
program = lib.getExe glistix;
};
devShells.default = pkgs.mkShell {
packages = with pkgs; [ rustc cargo ];
buildInputs = (lib.optionals pkgs.stdenv.isDarwin [
pkgs.darwin.apple_sdk.frameworks.Security
pkgs.darwin.apple_sdk.frameworks.SystemConfiguration
]) ++ [
pkgs.openssl
];
nativeBuildInputs = [
pkgs.pkg-config
pkgs.openssl.dev
];
};
};
};
}