1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/melodic/rosbash-params/default.nix

25 lines
730 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2021 Open Source Robotics Foundation
2019-03-21 00:14:59 -04:00
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, rosbash, rospy }:
2019-03-21 00:14:59 -04:00
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";
name = "1.0.2-0.tar.gz";
2019-03-21 00:14:59 -04:00
sha256 = "af9e6ee8c0ffae32824fbbfa2dfcbb6483e0ad1757282f347ca744db60dcb9a1";
};
buildType = "catkin";
2019-03-21 00:14:59 -04:00
propagatedBuildInputs = [ rosbash rospy ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Tools for writing ros-node-like bash scripts'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}