mirror of
https://github.com/NixOS/nix
synced 2025-06-25 06:31:14 +02:00
80 lines
1.5 KiB
Nix
80 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
buildPackages,
|
|
stdenv,
|
|
mkMesonExecutable,
|
|
|
|
nix-fetchers,
|
|
nix-fetchers-c,
|
|
nix-store-test-support,
|
|
|
|
libgit2,
|
|
rapidcheck,
|
|
gtest,
|
|
runCommand,
|
|
|
|
# Configuration Options
|
|
|
|
version,
|
|
resolvePath,
|
|
}:
|
|
|
|
let
|
|
inherit (lib) fileset;
|
|
in
|
|
|
|
mkMesonExecutable (finalAttrs: {
|
|
pname = "nix-fetchers-tests";
|
|
inherit version;
|
|
|
|
workDir = ./.;
|
|
fileset = fileset.unions [
|
|
../../nix-meson-build-support
|
|
./nix-meson-build-support
|
|
../../.version
|
|
./.version
|
|
./meson.build
|
|
# ./meson.options
|
|
(fileset.fileFilter (file: file.hasExt "cc") ./.)
|
|
(fileset.fileFilter (file: file.hasExt "hh") ./.)
|
|
];
|
|
|
|
buildInputs = [
|
|
nix-fetchers
|
|
nix-fetchers-c
|
|
nix-store-test-support
|
|
rapidcheck
|
|
gtest
|
|
libgit2
|
|
];
|
|
|
|
mesonFlags = [
|
|
];
|
|
|
|
passthru = {
|
|
tests = {
|
|
run =
|
|
runCommand "${finalAttrs.pname}-run"
|
|
{
|
|
meta.broken = !stdenv.hostPlatform.emulatorAvailable buildPackages;
|
|
}
|
|
(
|
|
lib.optionalString stdenv.hostPlatform.isWindows ''
|
|
export HOME="$PWD/home-dir"
|
|
mkdir -p "$HOME"
|
|
''
|
|
+ ''
|
|
export _NIX_TEST_UNIT_DATA=${resolvePath ./data}
|
|
${stdenv.hostPlatform.emulator buildPackages} ${lib.getExe finalAttrs.finalPackage}
|
|
touch $out
|
|
''
|
|
);
|
|
};
|
|
};
|
|
|
|
meta = {
|
|
platforms = lib.platforms.unix ++ lib.platforms.windows;
|
|
mainProgram = finalAttrs.pname + stdenv.hostPlatform.extensions.executable;
|
|
};
|
|
|
|
})
|