-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from humanoid-path-planner/nix
nix: move package to nixpkgs
- Loading branch information
Showing
4 changed files
with
39 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,49 @@ | ||
{ | ||
description = "Environments and robot descriptions for HPP"; | ||
|
||
nixConfig = { | ||
extra-substituters = [ "https://gepetto.cachix.org" ]; | ||
extra-trusted-public-keys = [ "gepetto.cachix.org-1:toswMl31VewC0jGkN6+gOelO2Yom0SOHzPwJMY2XiDY=" ]; | ||
}; | ||
|
||
inputs = { | ||
nixpkgs.url = "github:nim65s/nixpkgs/gepetto"; | ||
nixpkgs.url = "github:gepetto/nixpkgs"; | ||
flake-parts = { | ||
url = "github:hercules-ci/flake-parts"; | ||
inputs.nixpkgs-lib.follows = "nixpkgs"; | ||
}; | ||
}; | ||
|
||
outputs = | ||
inputs@{ flake-parts, ... }: | ||
flake-parts.lib.mkFlake { inherit inputs; } { | ||
imports = [ ]; | ||
inputs: | ||
inputs.flake-parts.lib.mkFlake { inherit inputs; } { | ||
systems = [ | ||
"x86_64-linux" | ||
"aarch64-linux" | ||
"aarch64-darwin" | ||
"x86_64-darwin" | ||
]; | ||
perSystem = | ||
{ self', pkgs, ... }: | ||
{ pkgs, self', ... }: | ||
{ | ||
packages = { | ||
inherit (pkgs) cachix; | ||
default = pkgs.callPackage ./. { }; | ||
apps.default = { | ||
type = "app"; | ||
program = pkgs.python3.withPackages (_: [ self'.packages.default ]); | ||
}; | ||
devShells.default = pkgs.mkShell { inputsFrom = [ self'.packages.default ]; }; | ||
packages = { | ||
default = self'.packages.hpp-environments; | ||
hpp-environments = pkgs.python3Packages.hpp-environments.overrideAttrs (_: { | ||
src = pkgs.lib.fileset.toSource { | ||
root = ./.; | ||
fileset = pkgs.lib.fileset.unions [ | ||
./CMakeLists.txt | ||
./examples | ||
./meshes | ||
./package.xml | ||
./src | ||
./srdf | ||
./texture | ||
./urdf | ||
]; | ||
}; | ||
}); | ||
}; | ||
}; | ||
}; | ||
} |