gephi: init at 0.9.1 (#16071)
This commit is contained in:
parent
aaf28a1a7f
commit
3832ebde8b
2 changed files with 39 additions and 0 deletions
37
pkgs/applications/science/misc/gephi/default.nix
Normal file
37
pkgs/applications/science/misc/gephi/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
|||
{stdenv, fetchurl, jdk}:
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
let version = "0.9.1"; in
|
||||
stdenv.mkDerivation {
|
||||
name = "gephi-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/gephi/gephi/releases/download/v${version}/gephi-${version}-linux.tar.gz";
|
||||
sha256 = "f1d54157302df05a53b94e1518880c949c43ba4ab21e52d57f3edcbdaa06c7ee";
|
||||
};
|
||||
|
||||
meta = {
|
||||
inherit version;
|
||||
description = "A platform for visualizing and manipulating large graphs";
|
||||
homepage = https://gephi.org;
|
||||
license = licenses.gpl3;
|
||||
maintainers = [maintainers.taeer];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
|
||||
buildInputs = [jdk];
|
||||
|
||||
configurePhase = "
|
||||
echo \"jdkhome=${jdk}\" >> etc/gephi.conf
|
||||
";
|
||||
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = "
|
||||
mkdir $out
|
||||
for a in ./*; do
|
||||
mv $a $out
|
||||
done
|
||||
";
|
||||
}
|
|
@ -7080,6 +7080,8 @@ in
|
|||
gecode_4 = callPackage ../development/libraries/gecode { };
|
||||
gecode = self.gecode_4;
|
||||
|
||||
gephi = callPackage ../applications/science/misc/gephi { };
|
||||
|
||||
gegl = callPackage ../development/libraries/gegl { };
|
||||
|
||||
gegl_0_3 = callPackage ../development/libraries/gegl/3.0.nix { };
|
||||
|
|
Loading…
Reference in a new issue