Files
Andreas Rammhold 4aef6f76d4 tests.problems: adjust test code for oldestSupportedRelease=26.05
In 53cd6f263c the oldestSupportedRelease
version was bumped to 26.05 which caused the meta/problems tests to
fail because the `config.allowBrokenPredicate` is now deprecated and
the code is warning about it.
2026-07-13 13:38:53 +02:00

19 lines
343 B
Nix

{ nixpkgs }:
let
lib = pkgs.lib;
pkgs = import nixpkgs {
system = "x86_64-linux";
overlays = [ ];
config = {
problems.handlers.a.broken = "ignore";
};
};
in
pkgs.stdenvNoCC.mkDerivation {
pname = "a";
version = "0";
meta.maintainers = [ "hello" ];
meta.description = "Some package";
meta.broken = true;
}