aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
blob: ce3b001d23a4247de90edaaa2c659e52325128ac (plain)
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
{
  description = "slothlang";

  inputs = {
    nixpkgs.url = "github:nixos/nixpkgs/master";
    flake-utils.url = "github:numtide/flake-utils";
    rust-overlay.url = "github:oxalica/rust-overlay";
    flake-compat = {
      url = "github:edolstra/flake-compat";
      flake = false;
    };
  };

  outputs = { self, nixpkgs, flake-utils, rust-overlay, ... }:
    flake-utils.lib.eachDefaultSystem (system:
      let
        overlays = [ (import rust-overlay) ];
        pkgs = import nixpkgs {
          inherit system overlays;
        };

        rustStable = pkgs.rust-bin.stable.latest.default;
        rustNightly = pkgs.rust-bin.nightly."2023-02-10".default;

        rustPlatform = pkgs.makeRustPlatform {
          cargo = rustStable;
          rustc = rustStable;
        };
      in
      with pkgs;
      {
        packages.default = rustPlatform.buildRustPackage rec {
          pname = "sloth";
          version = "0.1.0";
          src = ./.;

          # FIXME: Tests do not run in release mode
          checkType = "debug";
          cargoLock = {
            lockFile = ./Cargo.lock;
          };

          meta = with lib; {
            description = "The Sloth programming language";
            homepage = "https://slothlang.tech";
            license = with licenses; [ mit asl20 ];
          };
        };
        devShells.default = mkShell {
          buildInputs = [
            (rustNightly.override {
              extensions = [ "rust-src" "rust-analyzer" ];
              targets = [ "wasm32-unknown-unknown" ];
            })

            cargo-deny
            cargo-release
          ];
        };
      }
    );
}