Merge pull request #236094 from GlancingMind/eclipse-dsl
eclipses.eclipse-dsl: Init at 2023-09
This commit is contained in:
commit
36de5e6c04
1 changed files with 16 additions and 1 deletions
|
@ -9,7 +9,7 @@
|
||||||
# use ./update.sh to help with updating for each quarterly release
|
# use ./update.sh to help with updating for each quarterly release
|
||||||
#
|
#
|
||||||
# then, to test:
|
# then, to test:
|
||||||
# for e in cpp modeling platform sdk java jee committers rcp; do for s in pkgs pkgsCross.aarch64-multiplatform; do echo; echo $s $e; nix build -f default.nix ${s}.eclipses.eclipse-${e} -o eclipse-${s}-${e}; done; done
|
# for e in cpp dsl modeling platform sdk java jee committers rcp; do for s in pkgs pkgsCross.aarch64-multiplatform; do echo; echo $s $e; nix build -f default.nix ${s}.eclipses.eclipse-${e} -o eclipse-${s}-${e}; done; done
|
||||||
|
|
||||||
let
|
let
|
||||||
platform_major = "4";
|
platform_major = "4";
|
||||||
|
@ -49,6 +49,21 @@ in rec {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
### Eclipse DSL
|
||||||
|
|
||||||
|
eclipse-dsl = buildEclipse {
|
||||||
|
name = "eclipse-dsl-${platform_major}.${platform_minor}";
|
||||||
|
description = "Eclipse IDE for Java and DSL Developers";
|
||||||
|
src =
|
||||||
|
fetchurl {
|
||||||
|
url = "https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/technology/epp/downloads/release/${year}-${month}/R/eclipse-dsl-${year}-${month}-R-linux-gtk-${arch}.tar.gz";
|
||||||
|
hash = {
|
||||||
|
x86_64 = "sha256-xdvEt26ovcT65Jy+ePEAHHMAyICBQwJser2uL9VrwrA=";
|
||||||
|
aarch64 = "sha256-GPgD29d81YFtHtqqb66io1BwbNuHTqVZYrY4Oh4MojQ=";
|
||||||
|
}.${arch};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
### Eclipse Modeling
|
### Eclipse Modeling
|
||||||
|
|
||||||
eclipse-modeling = buildEclipse {
|
eclipse-modeling = buildEclipse {
|
||||||
|
|
Loading…
Reference in a new issue