sdformat: mark as broken

sdformat depends on an old version of ruby and needs to be fixed. Until
there is a proper upstream release, mark as broken.

sdformat is only used by the gazebo package.
This commit is contained in:
Rahul Gopinath 2016-09-07 01:24:37 -07:00 committed by zimbatm
parent 19180957f5
commit 66b6c2ce01

View File

@ -1,13 +1,10 @@
{ stdenv, fetchurl, cmake, boost, ruby_1_9, ignition, tinyxml
{ 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"
, ...
}:
let
ruby = ruby_1_9;
in
stdenv.mkDerivation rec {
src = fetchurl {
url = "http://osrf-distributions.s3.amazonaws.com/sdformat/releases/${name}.tar.bz2";
@ -26,6 +23,7 @@ stdenv.mkDerivation rec {
];
meta = {
broken = true;
platforms = stdenv.lib.platforms.unix;
};
}