ignition-math: remove

This commit is contained in:
puzzlewolf 2020-05-30 18:31:54 +02:00
parent a410beaa7f
commit f9622e3011
2 changed files with 0 additions and 35 deletions

View File

@ -1,27 +0,0 @@
{ stdenv, fetchurl, cmake }:
let
version = "2.6.0";
in
stdenv.mkDerivation {
pname = "ign-math2";
inherit version;
src = fetchurl {
url = "http://gazebosim.org/distributions/ign-math/releases/ignition-math2-${version}.tar.bz2";
sha256 = "1d4naq0zp704c7ckj2wwmhplxmwkvcs1jib8bklnnd09lhg9j92j";
};
buildInputs = [ cmake ];
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;
};
}

View File

@ -4259,14 +4259,6 @@ in
irods
irods-icommands;
ignition = recurseIntoAttrs {
math = callPackage ../development/libraries/ignition-math { };
math2 = ignition.math;
};
ihaskell = callPackage ../development/tools/haskell/ihaskell/wrapper.nix {
inherit (haskellPackages) ghcWithPackages;