mirror of
https://github.com/NixOS/nix.git
synced 2025-11-18 08:19:35 +01:00
This does not include any automation for the release branch, but is based on the configuration of https://github.com/NixOS/nix/pull/12349 pre-commit run -a nixfmt-rfc-style
106 lines
2.4 KiB
Nix
106 lines
2.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
mkMesonLibrary,
|
|
|
|
unixtools,
|
|
darwin,
|
|
|
|
nix-util,
|
|
boost,
|
|
curl,
|
|
aws-sdk-cpp,
|
|
libseccomp,
|
|
nlohmann_json,
|
|
sqlite,
|
|
|
|
busybox-sandbox-shell ? null,
|
|
|
|
# Configuration Options
|
|
|
|
version,
|
|
|
|
embeddedSandboxShell ? stdenv.hostPlatform.isStatic,
|
|
}:
|
|
|
|
let
|
|
inherit (lib) fileset;
|
|
in
|
|
|
|
mkMesonLibrary (finalAttrs: {
|
|
pname = "nix-store";
|
|
inherit version;
|
|
|
|
workDir = ./.;
|
|
fileset = fileset.unions [
|
|
../../build-utils-meson
|
|
./build-utils-meson
|
|
../../.version
|
|
./.version
|
|
./meson.build
|
|
./meson.options
|
|
./linux/meson.build
|
|
./unix/meson.build
|
|
./windows/meson.build
|
|
(fileset.fileFilter (file: file.hasExt "cc") ./.)
|
|
(fileset.fileFilter (file: file.hasExt "hh") ./.)
|
|
(fileset.fileFilter (file: file.hasExt "sb") ./.)
|
|
(fileset.fileFilter (file: file.hasExt "md") ./.)
|
|
(fileset.fileFilter (file: file.hasExt "sql") ./.)
|
|
];
|
|
|
|
nativeBuildInputs = lib.optional embeddedSandboxShell unixtools.hexdump;
|
|
|
|
buildInputs =
|
|
[
|
|
boost
|
|
curl
|
|
sqlite
|
|
]
|
|
++ lib.optional stdenv.hostPlatform.isLinux libseccomp
|
|
# There have been issues building these dependencies
|
|
++ lib.optional stdenv.hostPlatform.isDarwin darwin.apple_sdk.libs.sandbox
|
|
++ lib.optional (
|
|
stdenv.hostPlatform == stdenv.buildPlatform && (stdenv.isLinux || stdenv.isDarwin)
|
|
) aws-sdk-cpp;
|
|
|
|
propagatedBuildInputs = [
|
|
nix-util
|
|
nlohmann_json
|
|
];
|
|
|
|
preConfigure =
|
|
# "Inline" .version so it's not a symlink, and includes the suffix.
|
|
# Do the meson utils, without modification.
|
|
''
|
|
chmod u+w ./.version
|
|
echo ${version} > ../../.version
|
|
'';
|
|
|
|
mesonFlags =
|
|
[
|
|
(lib.mesonEnable "seccomp-sandboxing" stdenv.hostPlatform.isLinux)
|
|
(lib.mesonBool "embedded-sandbox-shell" embeddedSandboxShell)
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [
|
|
(lib.mesonOption "sandbox-shell" "${busybox-sandbox-shell}/bin/busybox")
|
|
];
|
|
|
|
env =
|
|
{
|
|
# Needed for Meson to find Boost.
|
|
# https://github.com/NixOS/nixpkgs/issues/86131.
|
|
BOOST_INCLUDEDIR = "${lib.getDev boost}/include";
|
|
BOOST_LIBRARYDIR = "${lib.getLib boost}/lib";
|
|
}
|
|
// lib.optionalAttrs
|
|
(stdenv.isLinux && !(stdenv.hostPlatform.isStatic && stdenv.system == "aarch64-linux"))
|
|
{
|
|
LDFLAGS = "-fuse-ld=gold";
|
|
};
|
|
|
|
meta = {
|
|
platforms = lib.platforms.unix ++ lib.platforms.windows;
|
|
};
|
|
|
|
})
|