nixpkgs/pkgs/development/libraries/ignition-math/default.nix

27 lines
745 B
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake }:
let
2016-12-09 20:58:23 +00:00
version = "2.6.0";
in
stdenv.mkDerivation rec {
name = "ign-math2-${version}";
src = fetchurl {
url = "http://gazebosim.org/distributions/ign-math/releases/ignition-math2-${version}.tar.bz2";
2016-12-09 20:58:23 +00:00
sha256 = "1d4naq0zp704c7ckj2wwmhplxmwkvcs1jib8bklnnd09lhg9j92j";
};
buildInputs = [ cmake ];
2016-12-09 20:58:23 +00:00
preConfigure = ''
cmakeFlags="$cmakeFlags -DCMAKE_INSTALL_INCLUDEDIR=include -DCMAKE_INSTALL_LIBDIR=lib"
'';
meta = with stdenv.lib; {
homepage = https://ignitionrobotics.org/libraries/math;
description = "Math library by Ingition Robotics, created for the Gazebo project";
license = licenses.asl20;
maintainers = with maintainers; [ pxc ];
platforms = platforms.all;
};
}