4aef6f76d4
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.
19 lines
343 B
Nix
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;
|
|
}
|