depot/pkgs/tools/graphics/ggobi/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

27 lines
733 B
Nix

{ lib, stdenv, fetchurl, pkg-config, libxml2, gtk2 }:
stdenv.mkDerivation rec {
version = "2.1.11";
pname = "ggobi";
src = fetchurl {
url = "http://www.ggobi.org/downloads/ggobi-${version}.tar.bz2";
sha256 = "2c4ddc3ab71877ba184523e47b0637526e6f3701bd9afb6472e6dfc25646aed7";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libxml2 gtk2 ];
configureFlags = [ "--with-all-plugins" ];
hardeningDisable = [ "format" ];
meta = with lib; {
description = "Visualization program for exploring high-dimensional data";
homepage = "http://www.ggobi.org/";
license = licenses.cpl10;
platforms = platforms.linux;
maintainers = [ maintainers.michelk ];
mainProgram = "ggobi";
};
}