mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 13:40:32 +03:00
25 lines
916 B
Nix
25 lines
916 B
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, cmake, eigen, glew, libjpeg_turbo, libpng, libxkbcommon, python3, wayland }:
|
|
buildRosPackage {
|
|
pname = "ros-humble-pangolin";
|
|
version = "0.9.1-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/Pangolin-release/archive/release/humble/pangolin/0.9.1-1.tar.gz";
|
|
name = "0.9.1-1.tar.gz";
|
|
sha256 = "30fac32266d7a371c6373fd0ce5bcbeb17f4523b3c6c521065fc9138a157941c";
|
|
};
|
|
|
|
buildType = "cmake";
|
|
buildInputs = [ cmake eigen ];
|
|
propagatedBuildInputs = [ glew libjpeg_turbo libpng libxkbcommon python3 wayland ];
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = {
|
|
description = "Pangolin is a set of lightweight and portable utility libraries for prototyping 3D, numeric or video based programs and algorithms.";
|
|
license = with lib.licenses; [ mit ];
|
|
};
|
|
}
|