-
Notifications
You must be signed in to change notification settings - Fork 1
/
flake.nix
49 lines (43 loc) · 1.25 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
{
description = "A small functional programming language";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs";
flake-utils = {
url = "github:numtide/flake-utils";
inputs.nixpkgs.follows = "nixpkgs";
};
fenix = {
url = "github:nix-community/fenix";
inputs.nixpkgs.follows = "nixpkgs";
};
naersk = {
url = "github:nmattia/naersk";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, fenix, naersk, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
toolchain = fenix.packages.${system}.complete;
naersk-lib = naersk.lib.${system}.override {
inherit (toolchain) cargo rustc;
};
lamb = naersk-lib.buildPackage {
name = "lamb";
src = ./.;
};
in {
packages.lamb = lamb;
defaultPackage = self.packages.${system}.lamb;
devShell = pkgs.mkShell {
inputsFrom = builtins.attrValues self.packages.${system};
nativeBuildInputs = [
(toolchain.withComponents [
"cargo" "rustc" "rust-src" "rustfmt" "clippy"
])
];
RUST_BACKTRACE = 1;
};
});
}