meson: 1.3.2 -> 1.4.0

This commit is contained in:
Alyssa Ross 2024-03-22 14:38:20 +01:00
parent 89fd3034c9
commit a0a4b45ba9

View File

@ -14,17 +14,17 @@
}: }:
let let
inherit (darwin.apple_sdk.frameworks) AppKit Cocoa Foundation LDAP OpenGL; inherit (darwin.apple_sdk.frameworks) AppKit Cocoa Foundation LDAP OpenAL OpenGL;
in in
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "meson"; pname = "meson";
version = "1.3.2"; version = "1.4.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "mesonbuild"; owner = "mesonbuild";
repo = "meson"; repo = "meson";
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-7M/El2snWsQi+gaZWPHnEr9gpJW3trqG1RbnT43M49s="; hash = "sha256-hRTmKO2E6SIdvAhO7OJtV8dcsGm39c51H+2ZGEkdcFY=";
}; };
patches = [ patches = [
@ -86,6 +86,7 @@ python3.pkgs.buildPythonApplication rec {
Cocoa Cocoa
Foundation Foundation
LDAP LDAP
OpenAL
OpenGL OpenGL
openldap openldap
]; ];
@ -96,6 +97,7 @@ python3.pkgs.buildPythonApplication rec {
patchShebangs 'test cases' patchShebangs 'test cases'
substituteInPlace \ substituteInPlace \
'test cases/native/8 external program shebang parsing/script.int.in' \ 'test cases/native/8 external program shebang parsing/script.int.in' \
'test cases/common/273 customtarget exe for test/generate.py' \
--replace /usr/bin/env ${coreutils}/bin/env --replace /usr/bin/env ${coreutils}/bin/env
'' ''
] ]