Merge pull request #236094 from GlancingMind/eclipse-dsl

eclipses.eclipse-dsl: Init at 2023-09
This commit is contained in:
Emily Trau 2023-12-01 22:05:08 +11:00 committed by GitHub
commit 36de5e6c04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,7 @@
# use ./update.sh to help with updating for each quarterly release
#
# 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
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 = buildEclipse {