9 stdenv.mkDerivation rec {
13 url = "http://releases.atech.tufts.edu/jenkins/job/VUE/116/deployedArtifacts/download/artifact.1";
14 sha256 = "0yfzr80pw632lkayg4qfmwzrqk02y30yz8br7isyhmgkswyp5rnx";
20 mkdir -p "$out"/{share/vue,bin}
21 cp ${src} "$out/share/vue/vue.jar"
22 echo '#!${runtimeShell}' >> "$out/bin/vue"
23 echo '${jre}/bin/java -jar "'"$out/share/vue/vue.jar"'" "$@"' >> "$out/bin/vue"
24 chmod a+x "$out/bin/vue"
28 description = "Visual Understanding Environment - mind mapping software";
29 maintainers = with lib.maintainers; [ raskin ];
30 platforms = with lib.platforms; linux;
31 sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
32 license = lib.licenses.ecl20;