nixpkgs/pkgs/applications/editors/bluej/default.nix

37 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, makeWrapper, jdk }:
2020-09-18 09:28:53 +00:00
stdenv.mkDerivation rec {
pname = "bluej";
2021-05-03 08:48:00 +00:00
version = "5.0.1";
2020-09-18 09:28:53 +00:00
src = fetchurl {
# We use the deb here. First instinct might be to go for the "generic" JAR
# download, but that is actually a graphical installer that is much harder
# to unpack than the deb.
url = "https://www.bluej.org/download/files/BlueJ-linux-${builtins.replaceStrings ["."] [""] version}.deb";
2021-05-03 08:48:00 +00:00
sha256 = "sha256-KhNhJ2xsw1g2yemwP6NQmJvk4cxZAQQNPEUBuLso5qM=";
2020-09-18 09:28:53 +00:00
};
nativeBuildInputs = [ makeWrapper ];
unpackPhase = ''
ar xf $src
tar xf data.tar.xz
'';
installPhase = ''
mkdir -p $out
cp -r usr/* $out
makeWrapper ${jdk}/bin/java $out/bin/bluej \
--add-flags "-Djavafx.embed.singleThread=true -Dawt.useSystemAAFontSettings=on -Xmx512M -cp \"$out/share/bluej/bluej.jar\" bluej.Boot"
'';
meta = with lib; {
2020-09-18 09:28:53 +00:00
description = "A simple integrated development environment for Java";
homepage = "https://www.bluej.org/";
license = licenses.gpl2ClasspathPlus;
2021-02-20 11:03:24 +00:00
maintainers = [ maintainers.chvp ];
2020-09-18 09:28:53 +00:00
platforms = platforms.unix;
};
}