mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
26 lines
931 B
Nix
26 lines
931 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, ecl-config, ecl-errors, ecl-license }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-ecl-exceptions";
|
|
version = "0.62.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/yujinrobot-release/ecl_core-release/archive/release/melodic/ecl_exceptions/0.62.2-0.tar.gz";
|
|
name = "0.62.2-0.tar.gz";
|
|
sha256 = "41ebe177df444d6184cf296500c419bdac0173c0296d37dfd55110da85216017";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
propagatedBuildInputs = [ ecl-config ecl-errors ecl-license ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''Template based exceptions - these are simple and practical
|
|
and avoid the proliferation of exception types. Although not
|
|
syntatactically ideal, it is convenient and eminently practical.'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|