ponyc: 0.38.1 -> 0.38.3
New upstream release. Also switched from libressl to openssl because it makes using the net_ssl package easier.
This commit is contained in:
parent
76561002c2
commit
8f655e2d50
@ -1,15 +1,15 @@
|
|||||||
{ lib, stdenv, fetchFromGitHub, fetchurl, makeWrapper, pcre2, coreutils, which, libressl, libxml2, cmake, z3, substituteAll,
|
{ lib, stdenv, fetchFromGitHub, fetchurl, makeWrapper, pcre2, coreutils, which, openssl, libxml2, cmake, z3, substituteAll,
|
||||||
cc ? stdenv.cc, lto ? !stdenv.isDarwin }:
|
cc ? stdenv.cc, lto ? !stdenv.isDarwin }:
|
||||||
|
|
||||||
stdenv.mkDerivation (rec {
|
stdenv.mkDerivation (rec {
|
||||||
pname = "ponyc";
|
pname = "ponyc";
|
||||||
version = "0.38.1";
|
version = "0.38.3";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "ponylang";
|
owner = "ponylang";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "1hk810k9h3bl641pgw91y4x2qw67rvbapx6p2pk9qz5p7nfcn7qh";
|
sha256 = "14kivmyphi7gbd7mgd4cnsiwl4cl7wih8kwzh7n79s2s4c5hj4ak";
|
||||||
|
|
||||||
# Due to a bug in LLVM 9.x, ponyc has to include its own vendored patched
|
# Due to a bug in LLVM 9.x, ponyc has to include its own vendored patched
|
||||||
# LLVM. (The submodule is a specific tag in the LLVM source tree).
|
# LLVM. (The submodule is a specific tag in the LLVM source tree).
|
||||||
@ -95,7 +95,7 @@ stdenv.mkDerivation (rec {
|
|||||||
wrapProgram $out/bin/ponyc \
|
wrapProgram $out/bin/ponyc \
|
||||||
--prefix PATH ":" "${stdenv.cc}/bin" \
|
--prefix PATH ":" "${stdenv.cc}/bin" \
|
||||||
--set-default CC "$CC" \
|
--set-default CC "$CC" \
|
||||||
--prefix PONYPATH : "${lib.makeLibraryPath [ pcre2 libressl (placeholder "out") ]}"
|
--prefix PONYPATH : "${lib.makeLibraryPath [ pcre2 openssl (placeholder "out") ]}"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
# Stripping breaks linking for ponyc
|
# Stripping breaks linking for ponyc
|
||||||
|
Loading…
x
Reference in New Issue
Block a user