{ inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable"; }; outputs = { self , nixpkgs }: let supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ]; forAllSystems = nixpkgs.lib.genAttrs supportedSystems; nixpkgsFor = forAllSystems (system: import nixpkgs { inherit system; overlays = [ self.overlay ]; }); in { overlay = final: prev: { prompt = with final; let pname = "prompt"; packageMeta = (lib.importTOML ./Cargo.toml).package; in final.rustPlatform.buildRustPackage { inherit pname; inherit (packageMeta) version; nativeBuildInputs = [ pkg-config ]; buildInputs = [ openssl ] ++ pkgs.lib.optionals pkgs.stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security darwin.apple_sdk.frameworks.CoreServices darwin.libiconv ]; doCheck = false; src = self; cargoLock.lockFile = ./Cargo.lock; }; }; packages = forAllSystems (system: { inherit (nixpkgsFor."${system}") prompt; }); defaultPackage = forAllSystems (system: self.packages."${system}".prompt); devShell = forAllSystems (system: let pkgs = nixpkgsFor."${system}"; in pkgs.mkShell { nativeBuildInputs = [ pkgs.pkgconfig pkgs.openssl pkgs.bacon pkgs.rust-analyzer pkgs.rustc pkgs.cargo ]; RUST_LOG = "info"; RUST_BACKTRACE = 1; }); }; }