40 lines
1.3 KiB
Nix
40 lines
1.3 KiB
Nix
{ fetchurl, stdenv, libxml2, freetype, libGLU, libGL, glew, qt4
|
|
, cmake, makeWrapper, libjpeg, python }:
|
|
|
|
let version = "5.2.1"; in
|
|
stdenv.mkDerivation rec {
|
|
pname = "tulip";
|
|
inherit version;
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/auber/${pname}-${version}_src.tar.gz";
|
|
sha256 = "0bqmqy6sri87a8xv5xf7ffaq5zin4hiaa13g0l64b84i7yckfwky";
|
|
};
|
|
|
|
buildInputs = [ libxml2 freetype glew libGLU libGL qt4 libjpeg python ];
|
|
|
|
nativeBuildInputs = [ cmake makeWrapper ];
|
|
|
|
# FIXME: "make check" needs Docbook's DTD 4.4, among other things.
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "A visualization framework for the analysis and visualization of relational data";
|
|
|
|
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/;
|
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
|
|
|
maintainers = [ ];
|
|
platforms = stdenv.lib.platforms.gnu ++ stdenv.lib.platforms.linux; # arbitrary choice
|
|
};
|
|
}
|