mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
25 lines
817 B
Nix
25 lines
817 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, boost, cacert, catkin, git, mk, openssl, rosboost-cfg, rosbuild, unzip, zlib }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-assimp-devel";
|
|
version = "2.1.24-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/tork-a/jsk_3rdparty-release/archive/release/melodic/assimp_devel/2.1.24-1.tar.gz";
|
|
name = "2.1.24-1.tar.gz";
|
|
sha256 = "f1fc13d561d14a433023f924c829f39097608b7aa28f3947214cc89c3fb176b2";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
buildInputs = [ cacert git mk openssl rosboost-cfg rosbuild unzip ];
|
|
propagatedBuildInputs = [ boost zlib ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''assimp library'';
|
|
license = with lib.licenses; [ lgpl2 ];
|
|
};
|
|
}
|