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/dashing/lex-common/default.nix
2019-12-09 23:36:28 -05:00

26 lines
890 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gmock, ament-cmake-gtest, aws-common, cmake, ros-environment }:
buildRosPackage {
pname = "ros-dashing-lex-common";
version = "1.0.0-r1";
src = fetchurl {
url = "https://github.com/aws-gbp/lex_common-release/archive/release/dashing/lex_common/1.0.0-1.tar.gz";
name = "1.0.0-1.tar.gz";
sha256 = "ad3f4ad8823285ce0998320ab75819bf5e41dbbdf44055246a99c21089f2f5f4";
};
buildType = "cmake";
buildInputs = [ ament-cmake ros-environment ];
checkInputs = [ ament-cmake-gmock ament-cmake-gtest ];
propagatedBuildInputs = [ aws-common ];
nativeBuildInputs = [ cmake ];
meta = {
description = ''Lex Common utilities, intended for use by Lex clients'';
license = with lib.licenses; [ asl20 ];
};
}