mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 22:20:34 +03:00
23 lines
758 B
Nix
23 lines
758 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, variant-topic-test, variant-topic-tools, catkin, variant-msgs }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-variant";
|
||
|
version = "0.1.5";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/anybotics/variant-release/archive/release/kinetic/variant/0.1.5-0.tar.gz;
|
||
|
sha256 = "a64ca4d8b91e8bdf719d0604959a08f1483b19581de355f5213fc696557eb18f";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ variant-topic-test variant-topic-tools variant-msgs ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Meta-package for the universal variant library.'';
|
||
|
#license = lib.licenses.GNU Lesser General Public License (LGPL);
|
||
|
};
|
||
|
}
|