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

25 lines
852 B
Nix

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