mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-17 15:40:17 +03:00
23 lines
909 B
Nix
23 lines
909 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, zeroconf-jmdns-suite, rosjava-build-tools, catkin, genjava, rosjava-messages, rosjava-bootstrap, rosjava-test-msgs, rosjava-extras, rosjava-core }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-rosjava";
|
||
|
version = "0.3.0";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/rosjava-release/rosjava-release/archive/release/kinetic/rosjava/0.3.0-0.tar.gz;
|
||
|
sha256 = "3a67357648da216378519de67fe4a157c69086f4e2209c5c7813a629da9bfbd4";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ rosjava-core zeroconf-jmdns-suite rosjava-build-tools rosjava-test-msgs rosjava-extras genjava rosjava-messages rosjava-bootstrap ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''This is a meta package for the official rosjava repositories.'';
|
||
|
#license = lib.licenses.Apache 2.0;
|
||
|
};
|
||
|
}
|