avian: init at 1.2.0
This commit is contained in:
parent
c544cbca42
commit
64e727138a
36
pkgs/development/compilers/avian/default.nix
Normal file
36
pkgs/development/compilers/avian/default.nix
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, zlib, jdk }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "avian-${version}";
|
||||||
|
version = "1.2.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "readytalk";
|
||||||
|
repo = "avian";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1j2y45cpqk3x6a743mgpg7z3ivwm7qc9jy6xirvay7ah1qyxmm48";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
zlib
|
||||||
|
jdk
|
||||||
|
];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/bin
|
||||||
|
cp build/*/avian $out/bin/
|
||||||
|
cp build/*/avian-dynamic $out/bin/
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Lightweight Java virtual machine";
|
||||||
|
longDescription = ''
|
||||||
|
Avian is a lightweight virtual machine and class library designed
|
||||||
|
to provide a useful subset of Java’s features, suitable for
|
||||||
|
building self-contained applications.
|
||||||
|
'';
|
||||||
|
homepage = https://readytalk.github.io/avian/;
|
||||||
|
license = stdenv.lib.licenses.isc;
|
||||||
|
platforms = stdenv.lib.platforms.all;
|
||||||
|
};
|
||||||
|
}
|
@ -4107,6 +4107,10 @@ in
|
|||||||
|
|
||||||
avra = callPackage ../development/compilers/avra { };
|
avra = callPackage ../development/compilers/avra { };
|
||||||
|
|
||||||
|
avian = callPackage ../development/compilers/avian {
|
||||||
|
stdenv = overrideCC stdenv gcc49;
|
||||||
|
};
|
||||||
|
|
||||||
bigloo = callPackage ../development/compilers/bigloo {
|
bigloo = callPackage ../development/compilers/bigloo {
|
||||||
stdenv = overrideCC stdenv gcc49;
|
stdenv = overrideCC stdenv gcc49;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user