2019-02-26 03:45:54 -08:00
|
|
|
{ stdenv, fetchurl, jre, runtimeShell }:
|
2011-09-01 06:41:42 -07:00
|
|
|
|
2015-04-17 13:11:03 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "vue";
|
2015-10-15 08:58:17 -07:00
|
|
|
version = "3.3.0";
|
2015-04-17 13:11:03 -07:00
|
|
|
src = fetchurl {
|
2016-05-09 06:35:41 -07:00
|
|
|
url = "http://releases.atech.tufts.edu/jenkins/job/VUE/116/deployedArtifacts/download/artifact.1";
|
2015-10-15 08:58:17 -07:00
|
|
|
sha256 = "0yfzr80pw632lkayg4qfmwzrqk02y30yz8br7isyhmgkswyp5rnx";
|
2011-09-01 06:41:42 -07:00
|
|
|
};
|
|
|
|
|
2015-04-17 13:11:03 -07:00
|
|
|
phases = "installPhase";
|
2011-09-01 06:41:42 -07:00
|
|
|
|
2015-04-17 13:11:03 -07:00
|
|
|
installPhase = ''
|
2012-01-18 12:16:00 -08:00
|
|
|
mkdir -p "$out"/{share/vue,bin}
|
2013-11-21 22:34:08 -08:00
|
|
|
cp ${src} "$out/share/vue/vue.jar"
|
2019-02-26 03:45:54 -08:00
|
|
|
echo '#!${runtimeShell}' >> "$out/bin/vue"
|
2015-04-17 13:11:03 -07:00
|
|
|
echo '${jre}/bin/java -jar "'"$out/share/vue/vue.jar"'" "$@"' >> "$out/bin/vue"
|
2011-09-01 06:41:42 -07:00
|
|
|
chmod a+x "$out/bin/vue"
|
2015-04-17 13:11:03 -07:00
|
|
|
'';
|
2014-11-05 16:44:33 -08:00
|
|
|
|
2011-09-01 06:41:42 -07:00
|
|
|
meta = {
|
|
|
|
description = "Visual Understanding Environment - mind mapping software";
|
2015-04-17 13:11:03 -07:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ raskin ];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
license = stdenv.lib.licenses.free; # Apache License fork, actually
|
2011-09-01 06:41:42 -07:00
|
|
|
};
|
2015-04-17 13:11:03 -07:00
|
|
|
}
|