2019-11-10 16:44:34 +00:00
|
|
|
{ fetchurl, stdenv, libxml2, freetype, libGLU, libGL, glew, qt4
|
2016-09-18 19:52:58 +01:00
|
|
|
, cmake, makeWrapper, libjpeg, python }:
|
2010-06-14 19:30:35 +01:00
|
|
|
|
2019-08-21 03:45:43 +01:00
|
|
|
let version = "5.2.1"; in
|
2010-06-14 19:30:35 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "tulip";
|
|
|
|
inherit version;
|
2010-06-14 19:30:35 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-13 22:52:01 +01:00
|
|
|
url = "mirror://sourceforge/auber/${pname}-${version}_src.tar.gz";
|
2019-08-21 03:45:43 +01:00
|
|
|
sha256 = "0bqmqy6sri87a8xv5xf7ffaq5zin4hiaa13g0l64b84i7yckfwky";
|
2010-06-14 19:30:35 +01:00
|
|
|
};
|
|
|
|
|
2019-11-10 16:44:34 +00:00
|
|
|
buildInputs = [ libxml2 freetype glew libGLU libGL 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.
|
|
|
|
'';
|
|
|
|
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://tulip.labri.fr/";
|
2010-06-14 19:30:35 +01:00
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|