nixpkgs/pkgs/by-name/fl/flix/package.nix

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

37 lines
901 B
Nix
Raw Normal View History

2023-04-19 09:43:39 +00:00
{ lib, fetchurl, stdenvNoCC, makeWrapper, jre }:
stdenvNoCC.mkDerivation rec {
pname = "flix";
2024-10-20 06:31:07 +00:00
version = "0.52.0";
2023-04-19 09:43:39 +00:00
src = fetchurl {
url = "https://github.com/flix/flix/releases/download/v${version}/flix.jar";
2024-10-20 06:31:07 +00:00
sha256 = "sha256-OJBeJyF/CmLyMNRpjcx06GB7Lc4htNTm2apbi8wQKL4=";
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 = "Flix Programming Language";
mainProgram = "flix";
2023-04-19 09:43:39 +00:00
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
};
}