2021-01-17 10:17:16 +01:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, libxml2, gtk2 }:
|
2015-03-26 12:20:07 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "2.1.11";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "ggobi";
|
2015-03-26 12:20:07 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.ggobi.org/downloads/ggobi-${version}.tar.bz2";
|
|
|
|
sha256 = "2c4ddc3ab71877ba184523e47b0637526e6f3701bd9afb6472e6dfc25646aed7";
|
|
|
|
};
|
|
|
|
|
2021-01-17 10:17:16 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-05 23:26:13 +02:00
|
|
|
buildInputs = [ libxml2 gtk2 ];
|
2015-03-26 12:20:07 +01:00
|
|
|
|
2018-07-25 23:44:21 +02:00
|
|
|
configureFlags = [ "--with-all-plugins" ];
|
2015-03-26 12:20:07 +01:00
|
|
|
|
2016-02-26 18:38:15 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-11 01:44:25 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2015-03-26 12:20:07 +01:00
|
|
|
description = "Visualization program for exploring high-dimensional data";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://www.ggobi.org/";
|
2015-03-26 12:20:07 +01:00
|
|
|
license = licenses.cpl10;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.michelk ];
|
|
|
|
};
|
|
|
|
}
|