mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
738 B
Nix
23 lines
738 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, rosboost-cfg, boost, mk, git, rosbuild, catkin, cacert, unzip, openssl, zlib }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-melodic-assimp-devel";
|
||
|
version = "2.1.11";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/tork-a/jsk_3rdparty-release/archive/release/melodic/assimp_devel/2.1.11-0.tar.gz;
|
||
|
sha256 = "1c486fc48c4770e001309be306cc1e28975e1da17fbbc865967c410df538c9cc";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ zlib boost ];
|
||
|
nativeBuildInputs = [ rosboost-cfg boost mk git rosbuild catkin cacert unzip openssl zlib ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''assimp library'';
|
||
|
#license = lib.licenses.LGPL;
|
||
|
};
|
||
|
}
|