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

27 lines
931 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, ecl-config, ecl-errors, ecl-license }:
2019-03-21 00:14:59 -04:00
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";
2019-03-21 00:14:59 -04:00
sha256 = "41ebe177df444d6184cf296500c419bdac0173c0296d37dfd55110da85216017";
};
buildType = "catkin";
propagatedBuildInputs = [ ecl-config ecl-errors ecl-license ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
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 ];
2019-03-21 00:14:59 -04:00
};
}