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

25 lines
711 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, rospack }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-rosbash";
version = "1.14.9-r1";
2019-03-21 00:14:59 -04:00
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";
2019-03-21 00:14:59 -04:00
};
buildType = "catkin";
propagatedBuildInputs = [ catkin rospack ];
2019-03-21 00:14:59 -04:00
nativeBuildInputs = [ catkin ];
meta = {
description = ''Assorted shell commands for using ros with bash.'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}