nixpkgs/pkgs/development/compilers/flix/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
879 B
Nix
Raw Normal View History

2023-04-19 09:43:39 +00:00
{ lib, fetchurl, stdenvNoCC, makeWrapper, jre }:
stdenvNoCC.mkDerivation rec {
pname = "flix";
2023-10-20 08:51:11 +00:00
version = "0.41.0";
2023-04-19 09:43:39 +00:00
src = fetchurl {
url = "https://github.com/flix/flix/releases/download/v${version}/flix.jar";
2023-10-20 08:51:11 +00:00
sha256 = "sha256-bDeqwk+grkCxmGE9H8Ks7Q8KvLxNCzaLe44DlR6E7YE=";
2023-04-19 09:43:39 +00:00
};
dontUnpack = true;
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
runHook preInstall
export JAR=$out/share/java/flix/flix.jar
2023-04-19 09:43:39 +00:00
install -D $src $JAR
makeWrapper ${jre}/bin/java $out/bin/flix \
2023-04-19 09:43:39 +00:00
--add-flags "-jar $JAR"
2023-04-19 09:43:39 +00:00
runHook postInstall
'';
meta = with lib; {
description = "The Flix Programming Language";
homepage = "https://github.com/flix/flix";
sourceProvenance = with sourceTypes; [ binaryBytecode ];
license = licenses.asl20;
maintainers = with maintainers; [ athas ];
inherit (jre.meta) platforms;
2023-04-19 09:43:39 +00:00
};
}