# Copyright (C) 2023 The Trinitrix Project # # This file is part of the RPC crate for Trinitrix. # # RPC is free software: you can redistribute it and/or modify # it under the terms of the Lesser GNU General Public License as # published by the Free Software Foundation, either version 3 of # the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # and the Lesser GNU General Public License along with this program. # If not, see . { description = "A rust crate compiling to a shared library used to provide a interface to trinitrix's api"; inputs = { # nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; nixpkgs.url = "github:soispha/nixpkgs/licensure"; # 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 = { 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 = []; buildInputs = []; craneBuild = craneLib.buildPackage { src = craneLib.cleanCargoSource ./.; doCheck = true; inherit nativeBuildInputs buildInputs; }; in { checks.default = craneBuild; packages = { default = craneBuild; }; devShells.default = pkgs.mkShell { packages = with pkgs; [ alejandra cocogitto licensure rust cargo-edit cargo-expand # Used to format the c header files libclang gdb ]; inherit nativeBuildInputs buildInputs; }; }); }