aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
blob: a4f64b40d54925260d9de42952aec1314e972b89 (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
  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-06-19".default;

        rustPlatform = pkgs.makeRustPlatform {
          cargo = rustStable;
          rustc = rustStable;
        };
      in
      let
        baseNativeBuildInputs = with pkgs; [ pkg-config ];
        baseBuildInputs = with pkgs; [ 
          llvmPackages_15.libllvm
          libffi
          libxml2
        ];
      in
      with pkgs;
      {
        packages.default = rustPlatform.buildRustPackage {
          pname = "sloth";
          version = "0.1.0";
          src = ./.;

          cargoLock = {
            lockFile = ./Cargo.lock;
          };

          nativeBuildInputs = baseNativeBuildInputs;
          buildInputs = baseBuildInputs;

          meta = with lib; {
            description = "The Sloth programming language";
            homepage = "https://slothlang.tech";
            license = with licenses; [ mit asl20 ];
          };

          LLVM_SYS_150_PREFIX = "${llvmPackages_15.libllvm.dev}";
        };
        devShells.default = mkShell {
          nativeBuildInputs = baseNativeBuildInputs;
          buildInputs = baseBuildInputs ++ [
            (rustNightly.override {
              extensions = [ "rust-src" "rust-analyzer" ];
              targets = [ "wasm32-unknown-unknown" ];
            })

            cargo-watch
            cargo-deny
            cargo-release

            # C compiler for debugging
            clang
          ];

          RUST_BACKTRACE = 1;
        };
      }
    );
}