mirror of
https://github.com/NixOS/nix
synced 2025-06-25 06:31:14 +02:00
packaging: finalAttrs.doCheck
-> finalAttrs.finalPackage.doCheck
This includes the logic that disables checks on cross appropriately.
Co-authored-by: Peder Bergebakken Sundt <pbsds@hotmail.com>
(cherry picked from commit 27d71b21fc
)
This commit is contained in:
parent
4767974d4f
commit
6b40d83ec9
1 changed files with 2 additions and 2 deletions
|
@ -31,7 +31,7 @@ perl.pkgs.toPerlModule (
|
|||
./meson.build
|
||||
./meson.options
|
||||
]
|
||||
++ lib.optionals finalAttrs.doCheck [
|
||||
++ lib.optionals finalAttrs.finalPackage.doCheck [
|
||||
./.yath.rc.in
|
||||
./t
|
||||
]
|
||||
|
@ -70,7 +70,7 @@ perl.pkgs.toPerlModule (
|
|||
mesonFlags = [
|
||||
(lib.mesonOption "dbi_path" "${perlPackages.DBI}/${perl.libPrefix}")
|
||||
(lib.mesonOption "dbd_sqlite_path" "${perlPackages.DBDSQLite}/${perl.libPrefix}")
|
||||
(lib.mesonEnable "tests" finalAttrs.doCheck)
|
||||
(lib.mesonEnable "tests" finalAttrs.finalPackage.doCheck)
|
||||
];
|
||||
|
||||
mesonCheckFlags = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue