mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
37 lines
901 B
Nix
37 lines
901 B
Nix
{ lib, fetchurl, stdenvNoCC, makeWrapper, jre }:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "flix";
|
|
version = "0.48.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/flix/flix/releases/download/v${version}/flix.jar";
|
|
sha256 = "sha256-piwCEqUt4inhn4Ju2FaRjYtvkrNszCaTRE34eXERFLU=";
|
|
};
|
|
|
|
dontUnpack = true;
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
export JAR=$out/share/java/flix/flix.jar
|
|
install -D $src $JAR
|
|
makeWrapper ${jre}/bin/java $out/bin/flix \
|
|
--add-flags "-jar $JAR"
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Flix Programming Language";
|
|
mainProgram = "flix";
|
|
homepage = "https://github.com/flix/flix";
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ athas ];
|
|
inherit (jre.meta) platforms;
|
|
};
|
|
}
|