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/default.nix

24 lines
711 B
Nix

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, rospack }:
buildRosPackage {
pname = "ros-melodic-rosbash";
version = "1.14.9-r1";
src = fetchurl {
url = "https://github.com/ros-gbp/ros-release/archive/release/melodic/rosbash/1.14.9-1.tar.gz";
name = "1.14.9-1.tar.gz";
sha256 = "6a46f7fa9ddd7a2122e55dc4b4998650375c4814f7fb8539f7719ebb6e62a046";
};
buildType = "catkin";
propagatedBuildInputs = [ catkin rospack ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Assorted shell commands for using ros with bash.'';
license = with lib.licenses; [ bsdOriginal ];
};
}