mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
24 lines
778 B
Nix
24 lines
778 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, cob-default-env-config }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-cob-environments";
|
|
version = "0.6.12-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ipa320/cob_environments-release/archive/release/melodic/cob_environments/0.6.12-1.tar.gz";
|
|
name = "0.6.12-1.tar.gz";
|
|
sha256 = "ba9245a590fe7f3804ca97a203c4c23ab1ad46064c6f382f1f0d0cee72766e2a";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
propagatedBuildInputs = [ cob-default-env-config ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''This stack holds packages for IPA default environment configuration.'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|