|
12 | 12 | url = "github:hercules-ci/flake-parts";
|
13 | 13 | inputs.nixpkgs-lib.follows = "nixpkgs";
|
14 | 14 | };
|
15 |
| - hpp-util = { |
16 |
| - url = "github:humanoid-path-planner/hpp-util/release/5.1.0"; |
17 |
| - inputs.nixpkgs.follows = "nixpkgs"; |
18 |
| - inputs.flake-parts.follows = "flake-parts"; |
19 |
| - }; |
20 | 15 | hpp-core = {
|
21 | 16 | url = "github:humanoid-path-planner/hpp-core/release/5.1.0";
|
22 |
| - inputs.nixpkgs.follows = "nixpkgs"; |
23 |
| - inputs.flake-parts.follows = "flake-parts"; |
24 |
| - inputs.hpp-util.follows = "hpp-util"; |
| 17 | + inputs = { |
| 18 | + nixpkgs.follows = "nixpkgs"; |
| 19 | + flake-parts.follows = "flake-parts"; |
| 20 | + }; |
25 | 21 | };
|
26 | 22 | hpp-template-corba = {
|
27 | 23 | url = "github:humanoid-path-planner/hpp-template-corba/release/5.1.0";
|
28 |
| - inputs.nixpkgs.follows = "nixpkgs"; |
29 |
| - inputs.flake-parts.follows = "flake-parts"; |
30 |
| - inputs.hpp-util.follows = "hpp-util"; |
| 24 | + inputs = { |
| 25 | + nixpkgs.follows = "nixpkgs"; |
| 26 | + flake-parts.follows = "flake-parts"; |
| 27 | + hpp-util.follows = "hpp-core/hpp-constraints/hpp-util"; |
| 28 | + }; |
31 | 29 | };
|
32 | 30 | };
|
33 | 31 |
|
|
49 | 47 | ...
|
50 | 48 | }:
|
51 | 49 | {
|
52 |
| - packages.default = pkgs.callPackage ./. { |
53 |
| - hpp-core = inputs.hpp-core.packages.${system}.default; |
54 |
| - hpp-template-corba = inputs.hpp-template-corba.packages.${system}.default; |
| 50 | + packages = { |
| 51 | + inherit (pkgs) cachix; |
| 52 | + default = pkgs.callPackage ./. { |
| 53 | + hpp-core = inputs.hpp-core.packages.${system}.default; |
| 54 | + hpp-template-corba = inputs.hpp-template-corba.packages.${system}.default; |
| 55 | + }; |
55 | 56 | };
|
56 | 57 | devShells.default = pkgs.mkShell { inputsFrom = [ self'.packages.default ]; };
|
57 | 58 | };
|
|
0 commit comments