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

26 lines
978 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-gtest, ament-cmake-ros, ament-lint-auto, ament-lint-common, ecl-build, ecl-config, ecl-errors, ecl-license }:
buildRosPackage {
pname = "ros-eloquent-ecl-filesystem";
version = "1.0.4-r1";
src = fetchurl {
url = "https://github.com/yujinrobot-release/ecl_core-release/archive/release/eloquent/ecl_filesystem/1.0.4-1.tar.gz";
name = "1.0.4-1.tar.gz";
sha256 = "2de970c368bec3fc89d866d612f7976bd632724f0c1808bf9bb569529164595d";
};
buildType = "ament_cmake";
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ ecl-build ecl-config ecl-errors ecl-license ];
nativeBuildInputs = [ ament-cmake-ros ];
meta = {
description = ''Cross platform filesystem utilities (until c++11 makes its way in).'';
license = with lib.licenses; [ bsdOriginal ];
};
}