571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
28 lines
733 B
Nix
28 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";
|
|
};
|
|
}
|