schedulingPriority should be an int, fix check-meta type and in-tree use

+2 -2
+1 -1
pkgs/build-support/release/source-tarball.nix
··· 123 124 # Tarball builds are generally important, so give them a high 125 # default priority. 126 - schedulingPriority = "200"; 127 }; 128 } 129
··· 123 124 # Tarball builds are generally important, so give them a high 125 # default priority. 126 + schedulingPriority = 200; 127 }; 128 } 129
+1 -1
pkgs/stdenv/generic/check-meta.nix
··· 162 position = str; 163 repositories = attrsOf str; 164 isBuildPythonPackage = platforms; 165 - schedulingPriority = str; 166 downloadURLRegexp = str; 167 isFcitxEngine = bool; 168 isIbusEngine = bool;
··· 162 position = str; 163 repositories = attrsOf str; 164 isBuildPythonPackage = platforms; 165 + schedulingPriority = int; 166 downloadURLRegexp = str; 167 isFcitxEngine = bool; 168 isIbusEngine = bool;