1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00

regenerate all distros, Wed Sep 9 15:37:07 2020

This commit is contained in:
Ben Wolsieffer 2020-09-09 15:37:07 -04:00
parent fe63fc05f0
commit 7836189a6d
517 changed files with 5327 additions and 1605 deletions

View file

@ -0,0 +1,25 @@
# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, boost, catkin, cmake, doxygen, dynamic-graph, dynamic-graph-python, git }:
buildRosPackage {
pname = "ros-melodic-dynamic-graph-tutorial";
version = "1.2.2-r1";
src = fetchurl {
url = "https://github.com/stack-of-tasks/dynamic-graph-tutorial-ros-release/archive/release/melodic/dynamic-graph-tutorial/1.2.2-1.tar.gz";
name = "1.2.2-1.tar.gz";
sha256 = "8295134fa254829a0fa3a9aa2280cb7c330ee30adf6990f4fd842ea57ae5949d";
};
buildType = "cmake";
buildInputs = [ doxygen dynamic-graph dynamic-graph-python git ];
propagatedBuildInputs = [ boost catkin ];
nativeBuildInputs = [ cmake ];
meta = {
description = ''Dynamic graph tutorial'';
license = with lib.licenses; [ bsdOriginal ];
};
}