1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/kinetic/rosbash-params/default.nix

23 lines
658 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, rosbash, rospy }:
buildRosPackage {
pname = "ros-kinetic-rosbash-params";
version = "1.0.2";
src = fetchurl {
url = https://github.com/peci1/rosbash_params-release/archive/release/kinetic/rosbash_params/1.0.2-0.tar.gz;
sha256 = "afd0d2d249a5493ee0bd98a253d94c56c8769792a4b32ca526bcdf126825f6f7";
};
propagatedBuildInputs = [ rosbash rospy ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Tools for writing ros-node-like bash scripts'';
#license = lib.licenses.BSD;
};
}