Skip to content

Commit

Permalink
nix: package
Browse files Browse the repository at this point in the history
  • Loading branch information
nim65s committed Jun 29, 2024
1 parent 908310e commit 27d1fdf
Show file tree
Hide file tree
Showing 3 changed files with 344 additions and 39 deletions.
41 changes: 41 additions & 0 deletions default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
lib,
cmake,
hpp-corbaserver,
pkg-config,
python3Packages
}:

python3Packages.buildPythonPackage {
pname = "hpp-romeo";
version = "5.0.0";
pyproject = false;

src = lib.fileset.toSource {
root = ./.;
fileset = lib.fileset.unions [
./CMakeLists.txt
./doc
./launch
./package.xml
./rviz
./scripts
./src
];
};

strictDeps = true;

nativeBuildInputs = [
cmake
pkg-config
];
propagatedBuildInputs = [ hpp-corbaserver ];

meta = {
description = "Python and ros launch files for Romeo robot in hpp";
homepage = "https://github.com/humanoid-path-planner/hpp_romeo";
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.nim65s ];
};
}
299 changes: 283 additions & 16 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 27d1fdf

Please sign in to comment.