1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-15 06:31:44 +03:00
nix-ros-overlay/melodic/qwt-dependency/default.nix

22 lines
642 B
Nix
Raw Normal View History

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