mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-16 22:49:25 +03:00
schedulingPriority should be an int, fix check-meta type and in-tree use
This commit is contained in:
parent
a18da9b689
commit
9721ed22e8
2 changed files with 2 additions and 2 deletions
|
@ -123,7 +123,7 @@ stdenv.mkDerivation (
|
||||||
|
|
||||||
# Tarball builds are generally important, so give them a high
|
# Tarball builds are generally important, so give them a high
|
||||||
# default priority.
|
# default priority.
|
||||||
schedulingPriority = "200";
|
schedulingPriority = 200;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -162,7 +162,7 @@ let
|
||||||
position = str;
|
position = str;
|
||||||
repositories = attrsOf str;
|
repositories = attrsOf str;
|
||||||
isBuildPythonPackage = platforms;
|
isBuildPythonPackage = platforms;
|
||||||
schedulingPriority = str;
|
schedulingPriority = int;
|
||||||
downloadURLRegexp = str;
|
downloadURLRegexp = str;
|
||||||
isFcitxEngine = bool;
|
isFcitxEngine = bool;
|
||||||
isIbusEngine = bool;
|
isIbusEngine = bool;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue