{ inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable"; flake-parts.url = "github:hercules-ci/flake-parts"; makeimg = { url = "sourcehut:~liljamo/makeimg.nix?host=git.src.quest"; inputs = { nixpkgs.follows = "nixpkgs"; flake-parts.follows = "flake-parts"; }; }; }; outputs = inputs @ {...}: inputs.flake-parts.lib.mkFlake {inherit inputs;} { systems = ["x86_64-linux"]; perSystem = { pkgs, system, ... }: { devShells.default = pkgs.mkShell { buildInputs = with pkgs; [ inputs.makeimg.packages.${system}.default # tools just ]; }; }; }; }