2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, cmake }:
|
2019-09-06 12:16:22 -04:00
|
|
|
buildRosPackage {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-tinydir-vendor";
|
|
|
|
version = "1.1.0-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-06 12:16:03 -04:00
|
|
|
url = "https://github.com/ros2-gbp/tinydir_vendor-release/archive/release/dashing/tinydir_vendor/1.1.0-1.tar.gz";
|
|
|
|
name = "1.1.0-1.tar.gz";
|
2019-09-04 17:11:04 -04:00
|
|
|
sha256 = "a071b1faa7b7c421b701e067ec6209cbfe17b2f8bf2be2ed9f2c6baefe7b70df";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "cmake";
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''CMake shim over tinydir: https://github.com/cxong/tinydir/'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|