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

44 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, zlib, jdk, CoreServices, Foundation }:
2016-06-02 14:34:35 +00:00
stdenv.mkDerivation rec {
pname = "avian";
2016-06-02 14:34:35 +00:00
version = "1.2.0";
src = fetchFromGitHub {
owner = "readytalk";
repo = "avian";
rev = "v${version}";
sha256 = "1j2y45cpqk3x6a743mgpg7z3ivwm7qc9jy6xirvay7ah1qyxmm48";
};
2018-03-14 19:36:47 +00:00
buildInputs = [ zlib jdk ]
++ lib.optionals stdenv.isDarwin [ CoreServices Foundation ];
2018-03-14 19:36:47 +00:00
NIX_CFLAGS_COMPILE = "-Wno-error";
2018-03-14 19:36:47 +00:00
postPatch = ''
substituteInPlace makefile \
--replace 'g++' 'c++' \
--replace 'gcc' 'cc'
'';
2016-06-02 14:34:35 +00:00
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 Javas features, suitable for
building self-contained applications.
'';
homepage = "https://readytalk.github.io/avian/";
license = lib.licenses.isc;
platforms = lib.platforms.all;
maintainers = [ lib.maintainers.earldouglas ];
2016-06-02 14:34:35 +00:00
};
}