{ description = "bin service"; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; flake-utils.url = "github:numtide/flake-utils"; rust-overlay = { url = "github:oxalica/rust-overlay"; inputs = { nixpkgs.follows = "nixpkgs"; flake-utils.follows = "flake-utils"; }; }; crane = { url = "github:ipetkov/crane"; inputs = { nixpkgs.follows = "nixpkgs"; flake-utils.follows = "flake-utils"; rust-overlay.follows = "rust-overlay"; }; }; }; outputs = { self, nixpkgs, flake-utils, rust-overlay, crane}: let forAllSystems = function: nixpkgs.lib.genAttrs [ "x86_64-linux" "aarch64-linux" ] (system: function system nixpkgs.legacyPackages.${system}); in rec { packages = forAllSystems(system: syspkgs: let pkgs = import nixpkgs { inherit system; overlays = [ (import rust-overlay) ]; }; rustToolchain = pkgs.rust-bin.stable.latest.default; craneLib = (crane.mkLib pkgs).overrideToolchain rustToolchain; src = pkgs.lib.cleanSourceWith { src = craneLib.path ./.; filter = path: type: (pkgs.lib.hasSuffix "\.md" path) || (craneLib.filterCargoSources path type) ; }; nativeBuildInputs = with pkgs; [ rustToolchain pkg-config ]; buildInputs = with pkgs; [ ]; commonArgs = { inherit src buildInputs nativeBuildInputs; }; cargoArtifacts = craneLib.buildDepsOnly commonArgs; bin = craneLib.buildPackage (commonArgs // { inherit cargoArtifacts; pname = "bin"; }); binctl = craneLib.buildPackage (commonArgs // { inherit cargoArtifacts; pname = "binctl"; }); in { inherit bin binctl; default = bin; }); devShells = forAllSystems(system: pkgs: pkgs.mkShell { inputsFrom = [packages.${system}.bin packages.${system}.binctl]; }); hydraJobs."bin" = forAllSystems(system: pkgs: packages.${system}.bin); hydraJobs."binctl" = forAllSystems(system: pkgs: packages.${system}.binctl); }; }