1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/dashing/libcurl-vendor/default.nix

25 lines
805 B
Nix
Raw Normal View History

# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, curl, pkg-config }:
buildRosPackage {
pname = "ros-dashing-libcurl-vendor";
version = "2.1.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/resource_retriever-release/archive/release/dashing/libcurl_vendor/2.1.2-1.tar.gz";
name = "2.1.2-1.tar.gz";
sha256 = "1986856afbec5cb344157e0b0459358e2a216202c3e73d809bc029a38bb5657b";
};
buildType = "ament_cmake";
propagatedBuildInputs = [ curl pkg-config ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Wrapper around libcurl, it provides a fixed CMake module and an ExternalProject build of it.'';
license = with lib.licenses; [ asl20 mit ];
};
}