aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
blob: 531d73f002e4b7d95904dcb71f63a74893b7273e (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
{
  inputs = {
    nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";

    gitignore = {
      url = "github:hercules-ci/gitignore.nix";
      inputs.nixpkgs.follows = "nixpkgs";
    };

    rust-overlay = {
      url = "github:oxalica/rust-overlay";
      inputs.nixpkgs.follows = "nixpkgs";
    };
  };

  outputs = {
    self,
    nixpkgs,
    gitignore,
    rust-overlay,
  }: let
    inherit (gitignore.lib) gitignoreSource;

    supportedSystems = ["x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin"];
    forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
    nixpkgsFor = forAllSystems (system:
      import nixpkgs {
        inherit system;
        overlays = [rust-overlay.overlays.default self.overlays.default];
      });
  in {
    overlays.default = final: prev: {
      tbsp = with final; let
        pname = "tbsp";
        packageMeta = (lib.importTOML ./Cargo.toml).package;
        rustPlatform = makeRustPlatform {
          inherit (final) cargo rustc;
        };
      in
        rustPlatform.buildRustPackage {
          inherit pname;
          inherit (packageMeta) version;

          src = self;
          cargoLock.lockFile = ./Cargo.lock;

          meta = with lib; {
            description = "tree-based source processing language";
            homepage = "https://git.peppe.rs/languages/tbsp/about";
            license = licenses.mit;
          };
        };
    };

    defaultPackage = forAllSystems (system: nixpkgsFor."${system}".tbsp);
    formatter = forAllSystems (system: nixpkgsFor."${system}".alejandra);

    devShell = forAllSystems (system: let
      pkgs = nixpkgsFor."${system}";
    in
      pkgs.mkShell {
        nativeBuildInputs = [
          pkgs.cargo-watch
          pkgs.bacon
          pkgs.rustfmt
          pkgs.cargo

          pkgs.rust-bin.nightly.latest.default
          pkgs.rust-analyzer

        ];
        RUST_LOG = "info";
        RUST_BACKTRACE = 1;
      });
  };
}