From 58f73da66884c867f411a2cb3a52b6e241755fe6 Mon Sep 17 00:00:00 2001 From: Daniel Firth Date: Sat, 25 Jun 2022 12:50:08 +0000 Subject: [PATCH] hashlink: init at 1.12 --- .../interpreters/hashlink/default.nix | 53 +++++++++++++++++++ .../interpreters/hashlink/hashlink.patch | 8 +++ pkgs/top-level/all-packages.nix | 2 + 3 files changed, 63 insertions(+) create mode 100644 pkgs/development/interpreters/hashlink/default.nix create mode 100644 pkgs/development/interpreters/hashlink/hashlink.patch diff --git a/pkgs/development/interpreters/hashlink/default.nix b/pkgs/development/interpreters/hashlink/default.nix new file mode 100644 index 00000000000..eb69bd4103d --- /dev/null +++ b/pkgs/development/interpreters/hashlink/default.nix @@ -0,0 +1,53 @@ +{ stdenv +, lib +, fetchFromGitHub +, libGL +, libGLU +, libpng +, libjpeg_turbo +, libuv +, libvorbis +, mbedtls +, openal +, pcre +, SDL2 +, sqlite +}: + +stdenv.mkDerivation rec { + pname = "hashlink"; + version = "1.12"; + + src = fetchFromGitHub { + owner = "HaxeFoundation"; + repo = "hashlink"; + rev = version; + sha256 = "AiUGhTxz4Pkrks4oE+SAuAQPMuC5T2B6jo3Jd3sNrkQ="; + }; + + patches = [ ./hashlink.patch ]; + + makeFlags = [ "PREFIX=$(out)" ]; + + buildInputs = [ + libGL + libGLU + libjpeg_turbo + libpng + libuv + libvorbis + mbedtls + openal + pcre + SDL2 + sqlite + ]; + + meta = with lib; { + description = "A virtual machine for Haxe"; + homepage = "https://hashlink.haxe.org/"; + license = licenses.mit; + platforms = [ "x86_64-linux" ]; + maintainers = with maintainers; [ iblech locallycompact ]; + }; +} diff --git a/pkgs/development/interpreters/hashlink/hashlink.patch b/pkgs/development/interpreters/hashlink/hashlink.patch new file mode 100644 index 00000000000..5e699073d02 --- /dev/null +++ b/pkgs/development/interpreters/hashlink/hashlink.patch @@ -0,0 +1,8 @@ +*** a/Makefile 1970-01-01 01:00:01.000000000 +0100 +--- b/Makefile 2022-06-21 23:36:10.023460654 +0200 +*************** endif +*** 109,110 **** +--- 109,111 ---- + LIBOPENAL = -lopenal ++ LIBOPENGL = -lGL + RELEASE_NAME = linux diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b7829b4c015..197a02df859 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14421,6 +14421,8 @@ with pkgs; hadoop3 = hadoop_3_3; hadoop = hadoop3; + hashlink = callPackage ../development/interpreters/hashlink { }; + io = callPackage ../development/interpreters/io { }; ivy = callPackage ../development/interpreters/ivy { };