2018-02-24 13:12:44 +00:00
|
|
|
{ fetchurl, stdenv, libxml2, freetype, libGLU_combined, glew, qt4
|
2016-09-18 19:52:58 +01:00
|
|
|
, cmake, makeWrapper, libjpeg, python }:
|
2010-06-14 19:30:35 +01:00
|
|
|
|
2018-02-28 02:21:06 +00:00
|
|
|
let version = "5.1.0"; in
|
2010-06-14 19:30:35 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "tulip-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2013-02-16 15:16:32 +00:00
|
|
|
url = "mirror://sourceforge/auber/${name}_src.tar.gz";
|
2018-02-28 02:21:06 +00:00
|
|
|
sha256 = "1i70y8b39gkpxfalr9844pa3l4bnnyw5y7ngxdqibil96k2b9q9h";
|
2010-06-14 19:30:35 +01:00
|
|
|
};
|
|
|
|
|
2018-02-24 13:12:44 +00:00
|
|
|
buildInputs = [ libxml2 freetype glew libGLU_combined qt4 libjpeg python ];
|
2010-06-14 19:30:35 +01:00
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ cmake makeWrapper ];
|
2011-07-01 10:53:11 +01:00
|
|
|
|
2010-06-14 19:30:35 +01:00
|
|
|
# FIXME: "make check" needs Docbook's DTD 4.4, among other things.
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
2013-02-16 15:16:32 +00:00
|
|
|
description = "A visualization framework for the analysis and visualization of relational data";
|
2010-06-14 19:30:35 +01:00
|
|
|
|
|
|
|
longDescription =
|
|
|
|
'' Tulip is an information visualization framework dedicated to the
|
|
|
|
analysis and visualization of relational data. Tulip aims to
|
|
|
|
provide the developer with a complete library, supporting the design
|
|
|
|
of interactive information visualization applications for relational
|
|
|
|
data that can be tailored to the problems he or she is addressing.
|
|
|
|
'';
|
|
|
|
|
|
|
|
homepage = http://tulip.labri.fr/;
|
|
|
|
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2010-06-14 19:30:35 +01:00
|
|
|
|
2013-08-16 22:44:33 +01:00
|
|
|
maintainers = [ ];
|
2018-04-30 23:47:47 +01:00
|
|
|
platforms = stdenv.lib.platforms.gnu ++ stdenv.lib.platforms.linux; # arbitrary choice
|
2010-06-14 19:30:35 +01:00
|
|
|
};
|
|
|
|
}
|