{ description = "Classes for manipulation planning"; inputs = { nixpkgs.url = "github:gepetto/nixpkgs"; flake-parts = { url = "github:hercules-ci/flake-parts"; inputs.nixpkgs-lib.follows = "nixpkgs"; }; }; outputs = inputs: inputs.flake-parts.lib.mkFlake { inherit inputs; } { systems = [ "x86_64-linux" "aarch64-linux" "aarch64-darwin" "x86_64-darwin" ]; perSystem = { pkgs, self', ... }: { devShells.default = pkgs.mkShell { inputsFrom = [ self'.packages.default ]; }; packages = { default = self'.packages.hpp-manipulation; hpp-manipulation = pkgs.hpp-manipulation.overrideAttrs (_: { src = pkgs.lib.fileset.toSource { root = ./.; fileset = pkgs.lib.fileset.unions [ ./CMakeLists.txt ./doc ./include ./package.xml ./plugins ./src ./tests ]; }; }); }; }; }; }