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/melodic/assimp-devel/default.nix

24 lines
772 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# 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.12-r2";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = https://github.com/tork-a/jsk_3rdparty-release/archive/release/melodic/assimp_devel/2.1.12-2.tar.gz;
sha256 = "35553f415ba145a6c90ad40362835778cd08e946699051129cc840511dc6f564";
2019-03-21 00:14:59 -04:00
};
buildInputs = [ rosboost-cfg boost mk git rosbuild cacert unzip openssl zlib ];
2019-03-21 00:14:59 -04:00
propagatedBuildInputs = [ zlib boost ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''assimp library'';
license = with lib.licenses; [ lgpl2 ];
2019-03-21 00:14:59 -04:00
};
}