mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +03:00
22 lines
660 B
Nix
22 lines
660 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, catkin }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-rocon-semantic-version";
|
||
|
version = "0.3.2-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/yujinrobot-release/rocon_tools-release/archive/release/kinetic/rocon_semantic_version/0.3.2-1.tar.gz;
|
||
|
sha256 = "0506b915ccd5d60629a10843b2ed4c93b73b8e0f092e6892701c15be3cd76c10";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Internal packaging of the 2.2.2 version of the python semantic version module.'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|