2021-12-12 22:35:10 +01:00
|
|
|
|
{ lib
|
2023-02-01 21:22:01 +01:00
|
|
|
|
, stdenv
|
2023-07-17 14:11:18 +02:00
|
|
|
|
, fetchFromGitHub
|
2021-12-12 22:35:10 +01:00
|
|
|
|
, fetchpatch
|
|
|
|
|
, installShellFiles
|
2023-10-27 14:51:22 +02:00
|
|
|
|
, coreutils
|
|
|
|
|
, darwin
|
|
|
|
|
, libxcrypt
|
2021-12-13 02:50:23 +01:00
|
|
|
|
, ninja
|
|
|
|
|
, pkg-config
|
|
|
|
|
, python3
|
|
|
|
|
, substituteAll
|
2023-10-27 14:51:22 +02:00
|
|
|
|
, zlib
|
2021-12-12 22:35:10 +01:00
|
|
|
|
}:
|
|
|
|
|
|
2023-10-27 14:51:22 +02:00
|
|
|
|
let
|
|
|
|
|
inherit (darwin.apple_sdk.frameworks) AppKit Cocoa Foundation OpenGL;
|
|
|
|
|
in
|
2021-12-12 22:35:10 +01:00
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
|
|
|
pname = "meson";
|
2023-10-21 00:31:19 +02:00
|
|
|
|
version = "1.2.3";
|
2021-12-12 22:35:10 +01:00
|
|
|
|
|
2023-07-17 14:11:18 +02:00
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "mesonbuild";
|
|
|
|
|
repo = "meson";
|
|
|
|
|
rev = "refs/tags/${version}";
|
2023-10-21 00:31:19 +02:00
|
|
|
|
hash = "sha256-dgYYz3tQDG6Z4eE77WO2dXdardxVzzGaFLQ5znPcTlw=";
|
2021-12-12 22:35:10 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
patches = [
|
2023-10-27 19:18:04 +02:00
|
|
|
|
# In typical distributions, RPATH is only needed for internal libraries so
|
2021-12-12 22:35:10 +01:00
|
|
|
|
# meson removes everything else. With Nix, the locations of libraries
|
|
|
|
|
# are not as predictable, therefore we need to keep them in the RPATH.
|
|
|
|
|
# At the moment we are keeping the paths starting with /nix/store.
|
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/31222#issuecomment-365811634
|
|
|
|
|
(substituteAll {
|
2023-10-27 19:18:04 +02:00
|
|
|
|
src = ./001-fix-rpath.patch;
|
2021-12-12 22:35:10 +01:00
|
|
|
|
inherit (builtins) storeDir;
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
# When Meson removes build_rpath from DT_RUNPATH entry, it just writes
|
|
|
|
|
# the shorter NUL-terminated new rpath over the old one to reduce
|
|
|
|
|
# the risk of potentially breaking the ELF files.
|
|
|
|
|
# But this can cause much bigger problem for Nix as it can produce
|
|
|
|
|
# cut-in-half-by-\0 store path references.
|
|
|
|
|
# Let’s just clear the whole rpath and hope for the best.
|
2023-10-27 19:18:04 +02:00
|
|
|
|
./002-clear-old-rpath.patch
|
|
|
|
|
|
|
|
|
|
# Meson is currently inspecting fewer variables than autoconf does, which
|
|
|
|
|
# makes it harder for us to use setup hooks, etc.
|
|
|
|
|
# https://github.com/mesonbuild/meson/pull/6827
|
|
|
|
|
./003-more-env-vars.patch
|
|
|
|
|
|
|
|
|
|
# Unlike libtool, vanilla Meson does not pass any information about the path
|
|
|
|
|
# library will be installed to to g-ir-scanner, breaking the GIR when path
|
|
|
|
|
# other than ${!outputLib}/lib is used.
|
|
|
|
|
# We patch Meson to add a --fallback-library-path argument with library
|
|
|
|
|
# install_dir to g-ir-scanner.
|
|
|
|
|
./004-gir-fallback-path.patch
|
2021-12-12 22:35:10 +01:00
|
|
|
|
|
|
|
|
|
# Patch out default boost search paths to avoid impure builds on
|
|
|
|
|
# unsandboxed non-NixOS builds, see:
|
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/86131#issuecomment-711051774
|
2023-10-27 19:18:04 +02:00
|
|
|
|
./005-boost-Do-not-add-system-paths-on-nix.patch
|
2022-04-14 20:56:22 +02:00
|
|
|
|
|
2023-02-03 02:22:12 +01:00
|
|
|
|
# Nixpkgs cctools does not have bitcode support.
|
2023-10-27 19:18:04 +02:00
|
|
|
|
./006-disable-bitcode.patch
|
2023-02-03 02:22:12 +01:00
|
|
|
|
|
2022-05-01 00:28:26 +02:00
|
|
|
|
# Fix passing multiple --define-variable arguments to pkg-config.
|
|
|
|
|
# https://github.com/mesonbuild/meson/pull/10670
|
2022-04-14 20:56:22 +02:00
|
|
|
|
(fetchpatch {
|
2022-05-01 00:28:26 +02:00
|
|
|
|
url = "https://github.com/mesonbuild/meson/commit/d5252c5d4cf1c1931fef0c1c98dd66c000891d21.patch";
|
2023-10-27 19:18:04 +02:00
|
|
|
|
hash = "sha256-GiUNVul1N5Fl8mfqM7vA/r1FdKqImiDYLXMVDt77gvw=";
|
2022-05-01 00:28:26 +02:00
|
|
|
|
excludes = [
|
|
|
|
|
"docs/yaml/objects/dep.yaml"
|
|
|
|
|
];
|
2022-04-14 20:56:22 +02:00
|
|
|
|
})
|
2023-02-03 02:22:12 +01:00
|
|
|
|
];
|
2021-12-12 22:35:10 +01:00
|
|
|
|
|
2023-10-27 19:18:04 +02:00
|
|
|
|
buildInputs = lib.optionals (python3.pythonOlder "3.9") [
|
|
|
|
|
libxcrypt
|
|
|
|
|
];
|
2021-12-12 22:35:10 +01:00
|
|
|
|
|
2023-10-27 19:18:04 +02:00
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
|
|
|
|
|
nativeCheckInputs = [
|
|
|
|
|
ninja
|
|
|
|
|
pkg-config
|
|
|
|
|
];
|
2023-02-03 02:22:12 +01:00
|
|
|
|
|
2023-10-27 19:18:04 +02:00
|
|
|
|
checkInputs = [
|
|
|
|
|
zlib
|
|
|
|
|
]
|
|
|
|
|
++ lib.optionals stdenv.isDarwin [
|
|
|
|
|
AppKit
|
|
|
|
|
Cocoa
|
|
|
|
|
Foundation
|
|
|
|
|
OpenGL
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
checkPhase = lib.concatStringsSep "\n" ([
|
|
|
|
|
"runHook preCheck"
|
|
|
|
|
''
|
|
|
|
|
patchShebangs 'test cases'
|
|
|
|
|
substituteInPlace \
|
|
|
|
|
'test cases/native/8 external program shebang parsing/script.int.in' \
|
|
|
|
|
--replace /usr/bin/env ${coreutils}/bin/env
|
|
|
|
|
''
|
|
|
|
|
]
|
|
|
|
|
# Remove problematic tests
|
|
|
|
|
++ (builtins.map (f: ''rm -vr "${f}";'') [
|
2023-01-22 02:42:58 +01:00
|
|
|
|
# requires git, creating cyclic dependency
|
2023-10-27 19:18:04 +02:00
|
|
|
|
''test cases/common/66 vcstag''
|
2023-01-22 02:42:58 +01:00
|
|
|
|
# requires glib, creating cyclic dependency
|
2023-10-27 19:18:04 +02:00
|
|
|
|
''test cases/linuxlike/6 subdir include order''
|
|
|
|
|
''test cases/linuxlike/9 compiler checks with dependencies''
|
2023-01-22 02:42:58 +01:00
|
|
|
|
# requires static zlib, see #66461
|
2023-10-27 19:18:04 +02:00
|
|
|
|
''test cases/linuxlike/14 static dynamic linkage''
|
2023-02-03 02:22:12 +01:00
|
|
|
|
# Nixpkgs cctools does not have bitcode support.
|
2023-10-27 19:18:04 +02:00
|
|
|
|
''test cases/osx/7 bitcode''
|
|
|
|
|
])
|
|
|
|
|
++ [
|
|
|
|
|
''HOME="$TMPDIR" python ./run_project_tests.py''
|
|
|
|
|
"runHook postCheck"
|
|
|
|
|
]);
|
2023-02-03 02:22:12 +01:00
|
|
|
|
|
2023-10-27 19:18:04 +02:00
|
|
|
|
postInstall = ''
|
|
|
|
|
installShellCompletion --zsh data/shell-completions/zsh/_meson
|
|
|
|
|
installShellCompletion --bash data/shell-completions/bash/meson
|
2021-12-13 02:50:23 +01:00
|
|
|
|
'';
|
2021-12-12 22:35:10 +01:00
|
|
|
|
|
|
|
|
|
postFixup = ''
|
|
|
|
|
pushd $out/bin
|
|
|
|
|
# undo shell wrapper as meson tools are called with python
|
|
|
|
|
for i in *; do
|
|
|
|
|
mv ".$i-wrapped" "$i"
|
|
|
|
|
done
|
|
|
|
|
popd
|
|
|
|
|
|
|
|
|
|
# Do not propagate Python
|
|
|
|
|
rm $out/nix-support/propagated-build-inputs
|
2023-01-18 20:37:44 +01:00
|
|
|
|
|
|
|
|
|
substituteInPlace "$out/share/bash-completion/completions/meson" \
|
|
|
|
|
--replace "python3 -c " "${python3.interpreter} -c "
|
2021-12-12 22:35:10 +01:00
|
|
|
|
'';
|
|
|
|
|
|
2023-10-27 19:18:04 +02:00
|
|
|
|
setupHook = ./setup-hook.sh;
|
2021-12-12 22:35:10 +01:00
|
|
|
|
|
2023-10-27 19:18:04 +02:00
|
|
|
|
meta = {
|
2021-12-12 22:35:10 +01:00
|
|
|
|
homepage = "https://mesonbuild.com";
|
2021-12-12 23:29:19 +01:00
|
|
|
|
description = "An open source, fast and friendly build system made in Python";
|
|
|
|
|
longDescription = ''
|
|
|
|
|
Meson is an open source build system meant to be both extremely fast, and,
|
|
|
|
|
even more importantly, as user friendly as possible.
|
|
|
|
|
|
|
|
|
|
The main design point of Meson is that every moment a developer spends
|
|
|
|
|
writing or debugging build definitions is a second wasted. So is every
|
|
|
|
|
second spent waiting for the build system to actually start compiling
|
|
|
|
|
code.
|
|
|
|
|
'';
|
2023-10-27 19:18:04 +02:00
|
|
|
|
license = lib.licenses.asl20;
|
|
|
|
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
2021-12-12 23:29:19 +01:00
|
|
|
|
inherit (python3.meta) platforms;
|
2021-12-12 22:35:10 +01:00
|
|
|
|
};
|
|
|
|
|
}
|
2021-12-13 02:50:23 +01:00
|
|
|
|
# TODO: a more Nixpkgs-tailoired test suite
|