mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
658 B
Nix
23 lines
658 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, catkin, rosbash, rospy }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-melodic-rosbash-params";
|
||
|
version = "1.0.2";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/peci1/rosbash_params-release/archive/release/melodic/rosbash_params/1.0.2-0.tar.gz;
|
||
|
sha256 = "af9e6ee8c0ffae32824fbbfa2dfcbb6483e0ad1757282f347ca744db60dcb9a1";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ rosbash rospy ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Tools for writing ros-node-like bash scripts'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|