summary refs log blame commit diff
path: root/pkgs/test/config.nix
blob: 734e1aace1487956cc36d086e7ff587df37df2b1 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                                








                                                                                                                                            



                  
{ lib, ... }:
lib.recurseIntoAttrs {

  # https://github.com/NixOS/nixpkgs/issues/175196
  allowPkgsInPermittedInsecurePackages =
    let pkgs = import ../.. {
          config = {
            permittedInsecurePackages =
              tempAllow pkgs.authy "2.1.0" [ "electron-9.4.4" ];
          };
        };
        # A simplification of `tempAllow` that doesn't check the version, but
        # has the same strictness characteristics. Actually checking a version
        # here would add undue maintenance.
        #
        # Original:
        #     tempAllow = p: v: pa:
        #       lib.optionals (lib.assertMsg (p.version == v) "${p.name} is no longer at version ${v}, consider removing the tempAllow") pa;
        #
        tempAllow = p: v: pa: builtins.seq v builtins.seq p.version pa;

    in pkgs.hello;

}