@@ -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;
|
||||
};
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{ stdenv, fetchurl, callPackage, ... } @ args :
|
||||
|
||||
callPackage ./generic.nix (args // rec {
|
||||
version = "0.9.0";
|
||||
src = fetchurl {
|
||||
url = "http://gazebosim.org/distributions/ign-transport/releases/ignition-transport-${version}.tar.bz2";
|
||||
sha256 = "15a8lkxri8q2gc7h0pj1dg2kivhy46v8d3mlxpjy90l77788bw1z";
|
||||
};
|
||||
})
|
||||
@@ -1,9 +0,0 @@
|
||||
{ stdenv, fetchurl, callPackage, ... } @ args :
|
||||
|
||||
callPackage ./generic.nix (args // rec {
|
||||
version = "1.0.1";
|
||||
src = fetchurl {
|
||||
url = "http://gazebosim.org/distributions/ign-transport/releases/ignition-transport-${version}.tar.bz2";
|
||||
sha256 = "08qyd70vlymms1g4smblags9f057zsn62xxrx29rhd4wy8prnjsq";
|
||||
};
|
||||
})
|
||||
@@ -1,32 +0,0 @@
|
||||
{ stdenv, cmake, pkgconfig, utillinux,
|
||||
protobuf, zeromq, cppzmq,
|
||||
version, src # parametrize version and src so we can easily have pkgs
|
||||
# for different versions
|
||||
, ...
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "ign-transport";
|
||||
inherit version;
|
||||
inherit src;
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ cmake protobuf zeromq
|
||||
utillinux # we need utillinux/e2fsprogs uuid/uuid.h
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [ cppzmq ];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace cmake/ignition-config.cmake.in --replace "@CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_" "@CMAKE_INSTALL_"
|
||||
'';
|
||||
|
||||
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;
|
||||
broken = true; # 2018-04-10
|
||||
};
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
{ stdenv, fetchurl, callPackage, ... } @ args:
|
||||
|
||||
callPackage ./default.nix (args // {
|
||||
version = "3.7.0";
|
||||
srchash-sha256 = "07kn8bgvj9mwwinsp2cbmz11z7zw2lgnj61mi1gi1pjg7q9in98q";
|
||||
})
|
||||
|
||||
@@ -1,29 +0,0 @@
|
||||
{ stdenv, fetchurl, cmake, boost, ruby, ignition, tinyxml
|
||||
, name ? "sdformat-${version}"
|
||||
, version ? "4.0.0" # versions known to work with this expression include 3.7.0
|
||||
, srchash-sha256 ? "b0f94bb40b0d83e35ff250a7916fdfd6df5cdc1e60c47bc53dd2da5e2378163e"
|
||||
, ...
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
src = fetchurl {
|
||||
url = "http://osrf-distributions.s3.amazonaws.com/sdformat/releases/${name}.tar.bz2";
|
||||
sha256 = srchash-sha256;
|
||||
};
|
||||
|
||||
inherit name;
|
||||
|
||||
prePatch = ''
|
||||
substituteInPlace cmake/sdf_config.cmake.in --replace "@CMAKE_INSTALL_PREFIX@/@LIB_INSTALL_DIR@" "@LIB_INSTALL_DIR@"
|
||||
'';
|
||||
|
||||
enableParallelBuilding = true;
|
||||
buildInputs = [
|
||||
cmake boost ruby ignition.math2 tinyxml
|
||||
];
|
||||
|
||||
meta = {
|
||||
broken = true;
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user