1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/kinetic/qwt-dependency/default.nix

22 lines
642 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin }:
buildRosPackage {
pname = "ros-kinetic-qwt-dependency";
version = "1.1.0";
src = fetchurl {
url = https://github.com/ros-gbp/qwt_dependency-release/archive/release/kinetic/qwt_dependency/1.1.0-0.tar.gz;
sha256 = "963373b1a007e572526e56bc4903c2c623478faa7c93f8e56f91135423c65e28";
};
nativeBuildInputs = [ catkin ];
meta = {
description = ''This encapsulates the Qwt dependency for a specific ROS distribution and its Qt version'';
#license = lib.licenses.BSD;
};
}