mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
24 lines
699 B
Nix
24 lines
699 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, rostest, catkin, rosunit, rospy }:
|
|
buildRosPackage {
|
|
pname = "ros-kinetic-scratch4robots";
|
|
version = "0.0.2";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/JdeRobot/Scratch4Robots-release/archive/release/kinetic/scratch4robots/0.0.2-0.tar.gz;
|
|
sha256 = "06885d6419dad80bc40830296bcb3e6370c48c49256efe8683e60efb62991ec5";
|
|
};
|
|
|
|
buildInputs = [ rospy ];
|
|
checkInputs = [ rostest rosunit ];
|
|
propagatedBuildInputs = [ rospy ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''scratch4robots'';
|
|
#license = lib.licenses.GPL v3;
|
|
};
|
|
}
|