summary refs log tree commit diff
path: root/pkgs/applications/misc/vue
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2013-11-22 10:34:08 +0400
committerMichael Raskin <7c6f434c@mail.ru>2013-11-22 10:35:10 +0400
commit50ee1b2498a2ab98cf5f9b92288f64ea0ed30819 (patch)
treeda19d01112ee53d4e7c57e64d54835bc37aa28ae /pkgs/applications/misc/vue
parentfed248c78e3db25edfda4ae76c49910a9170ea46 (diff)
downloadnixlib-50ee1b2498a2ab98cf5f9b92288f64ea0ed30819.tar
nixlib-50ee1b2498a2ab98cf5f9b92288f64ea0ed30819.tar.gz
nixlib-50ee1b2498a2ab98cf5f9b92288f64ea0ed30819.tar.bz2
nixlib-50ee1b2498a2ab98cf5f9b92288f64ea0ed30819.tar.lz
nixlib-50ee1b2498a2ab98cf5f9b92288f64ea0ed30819.tar.xz
nixlib-50ee1b2498a2ab98cf5f9b92288f64ea0ed30819.tar.zst
nixlib-50ee1b2498a2ab98cf5f9b92288f64ea0ed30819.zip
Updating Visual Understanding Environment
Diffstat (limited to 'pkgs/applications/misc/vue')
-rw-r--r--pkgs/applications/misc/vue/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/applications/misc/vue/default.nix b/pkgs/applications/misc/vue/default.nix
index c90e4d24f37a..542f11f6e671 100644
--- a/pkgs/applications/misc/vue/default.nix
+++ b/pkgs/applications/misc/vue/default.nix
@@ -11,10 +11,10 @@ let
     (builtins.attrNames (builtins.removeAttrs x helperArgNames));
   sourceInfo = rec {
     baseName="vue";
-    version="3.1.2";
+    version="3.2.2";
     name="${baseName}-${version}";
-    url="http://releases.atech.tufts.edu/vue/v${version}/VUE_3_1_2.zip";
-    hash="0ga98gnp4qhcrb31cb8j0mwbrh6ym6hr4k5y4blxvyfff9c0vq47";
+    url="releases.atech.tufts.edu/jenkins/job/VUE/64/deployedArtifacts/download/artifact.2";
+    hash="0sb1kgan8fvph2cqfxk3906cwx5wy83zni2vlz4zzi6yg4zvfxld";
   };
 in
 rec {
@@ -30,9 +30,8 @@ rec {
   phaseNames = ["doDeploy"];
 
   doDeploy = a.fullDepEntry ''
-    unzip ${src}
     mkdir -p "$out"/{share/vue,bin}
-    cp VUE.jar "$out/share/vue/vue.jar"
+    cp ${src} "$out/share/vue/vue.jar"
     echo '#!${a.stdenv.shell}' >> "$out/bin/vue" 
     echo '${a.jre}/bin/java -jar "'"$out/share/vue/vue.jar"'" "$@"' >> "$out/bin/vue" 
     chmod a+x "$out/bin/vue"