packaging: checkMeta

This commit is contained in:
Qyriad 2026-03-05 16:19:06 +01:00
parent d681b96bc4
commit fa81457170
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@
# SPDX-License-Identifier: EUPL-1.1
{
pkgs ? import <nixpkgs> { },
pkgs ? import <nixpkgs> { config.checkMeta = true; },
qpkgs ? let
src = fetchTarball "https://github.com/Qyriad/nur-packages/archive/main.tar.gz";
in import src { inherit pkgs; },

View file

@ -26,7 +26,7 @@
fenix,
qyriad-nur,
}: flake-utils.lib.eachDefaultSystem (system: let
pkgs = import nixpkgs { inherit system; };
pkgs = import nixpkgs { inherit system; config.checkMeta = true; };
qpkgs = import qyriad-nur { inherit pkgs; };
inherit (qpkgs) lib;
fenixLib = import fenix { inherit pkgs; };