1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/melodic/assimp-devel/default.nix

26 lines
828 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.13-r1";
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.13-1.tar.gz";
name = "2.1.13-1.tar.gz";
sha256 = "f319e55fcad41526f49375ba1d5c2dff1c0052837e39aa60ca113c28748a3450";
2019-03-21 00:14:59 -04:00
};
buildType = "catkin";
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
};
}