mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-23 23:39:54 +03:00
26 lines
835 B
Nix
26 lines
835 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, aws-common, ament-cmake-gtest, cmake, ament-cmake-gmock }:
|
|
buildRosPackage {
|
|
pname = "ros-dashing-dataflow-lite";
|
|
version = "1.1.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/aws-gbp/cloudwatch_common-release/archive/release/dashing/dataflow_lite/1.1.1-0.tar.gz";
|
|
name = "1.1.1-0.tar.gz";
|
|
sha256 = "f49f3faab2dd18dd15ceee8f916745ae9b724f6e49a25f3543db72f06415605c";
|
|
};
|
|
|
|
buildType = "cmake";
|
|
buildInputs = [ aws-common ];
|
|
checkInputs = [ ament-cmake-gtest ament-cmake-gmock ];
|
|
propagatedBuildInputs = [ aws-common ];
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = {
|
|
description = ''Light version of dataflow libraries'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|