mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 09:17:07 +03:00
schedulingPriority should be an int, fix check-meta type and in-tree use
This commit is contained in:
parent
a18da9b689
commit
9721ed22e8
@ -123,7 +123,7 @@ stdenv.mkDerivation (
|
||||
|
||||
# Tarball builds are generally important, so give them a high
|
||||
# default priority.
|
||||
schedulingPriority = "200";
|
||||
schedulingPriority = 200;
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -162,7 +162,7 @@ let
|
||||
position = str;
|
||||
repositories = attrsOf str;
|
||||
isBuildPythonPackage = platforms;
|
||||
schedulingPriority = str;
|
||||
schedulingPriority = int;
|
||||
downloadURLRegexp = str;
|
||||
isFcitxEngine = bool;
|
||||
isIbusEngine = bool;
|
||||
|
Loading…
Reference in New Issue
Block a user