mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 22:20:34 +03:00
23 lines
716 B
Nix
23 lines
716 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, qt-tutorials, qt-create, catkin, qt-build }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-qt-ros";
|
||
|
version = "0.2.10";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/yujinrobot-release/qt_ros-release/archive/release/kinetic/qt_ros/0.2.10-0.tar.gz;
|
||
|
sha256 = "ec79e65c0d984924e42a13a7c3a18ccdd453db019fb315639123eb7b7cd87862";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ qt-tutorials qt-create qt-build ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Simple qt cmake build tools and master-chooser style application template.'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|