{ description = "A terminal UI client for the matrix chat protocol"; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; # inputs for following flake-compat = { url = "github:edolstra/flake-compat"; flake = false; }; crane = { url = "github:ipetkov/crane"; inputs = { nixpkgs.follows = "nixpkgs"; }; }; flake-utils = { url = "github:numtide/flake-utils"; inputs = {}; }; rust-overlay = { url = "github:oxalica/rust-overlay"; inputs = { nixpkgs.follows = "nixpkgs"; flake-utils.follows = "flake-utils"; }; }; }; outputs = { self, nixpkgs, crane, flake-utils, rust-overlay, ... }: flake-utils.lib.eachDefaultSystem (system: let pkgs = import nixpkgs { inherit system; overlays = [(import rust-overlay)]; }; nightly = false; rust = if nightly then (pkgs.rust-bin.selectLatestNightlyWith (toolchain: toolchain.default)) .override { extensions = ["rustc-codegen-cranelift-preview"]; } else pkgs.rust-bin.stable.latest.default; rust_min = if nightly then (pkgs.rust-bin.selectLatestNightlyWith (toolchain: toolchain.minimal)) .override { extensions = ["rustc-codegen-cranelift-preview"]; } else pkgs.rust-bin.stable.latest.minimal; craneLib = (crane.mkLib pkgs).overrideToolchain rust_min; nativeBuildInputs = with pkgs; [ pkg-config mold-wrapped clang-tools ]; buildInputs = with pkgs; [ openssl lua54Packages.lua ]; craneBuild = craneLib.buildPackage { src = craneLib.cleanCargoSource ./.; doCheck = true; inherit nativeBuildInputs buildInputs; }; in { checks.default = craneBuild; packages = { default = craneBuild; }; app.default = { type = "app"; program = "${self.packages.${system}.default}/bin/trinitix"; }; devShells.default = pkgs.mkShell { packages = with pkgs; [ alejandra rust cargo-edit cargo-expand ]; inherit nativeBuildInputs buildInputs; }; }); } # vim: ts=2