-
Notifications
You must be signed in to change notification settings - Fork 40
/
flake.nix
43 lines (38 loc) · 1.14 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
{
description = "Metamath Zero specification language";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs";
naersk = {
url = "github:nmattia/naersk";
inputs.nixpkgs.follows = "nixpkgs";
};
fenix = {
url = "github:nix-community/fenix";
inputs.nixpkgs.follows = "nixpkgs";
};
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, naersk, fenix, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
rust-toolchain = fenix.packages.${system}.stable;
naersk-lib = naersk.lib.${system}.override {
inherit (rust-toolchain) cargo rustc;
};
in rec {
# `nix build`
packages.mm0-rs = naersk-lib.buildPackage {
root = ./mm0-rs;
singleStep = true;
};
defaultPackage = packages.mm0-rs;
# `nix run`
apps.mm0-rs = packages.mm0-rs;
defaultApp = apps.mm0-rs;
# `nix develop`
devShell = pkgs.mkShell {
buildInputs = [ rust-toolchain.completeToolchain pkgs.rust-analyzer ];
};
});
}