mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
25 lines
862 B
Nix
25 lines
862 B
Nix
|
|
# 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 ];
|
|
};
|
|
}
|