forked from DGNum/colmena
package.nix: Remove conditionals on nix-eval-jobs
This commit is contained in:
parent
9f7f2c9cce
commit
11289dd7ff
2 changed files with 3 additions and 10 deletions
|
@ -3,12 +3,5 @@ let
|
|||
in import flake.inputs.stable.outPath {
|
||||
overlays = [
|
||||
flake.overlay
|
||||
|
||||
# Our nix-eval-jobs patch cannot be applied to 0.0.1
|
||||
(final: prev: {
|
||||
colmena = prev.colmena.override {
|
||||
nix-eval-jobs = null;
|
||||
};
|
||||
})
|
||||
];
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ lib, stdenv, rustPlatform, installShellFiles, nix-eval-jobs ? null }:
|
||||
{ lib, stdenv, rustPlatform, installShellFiles, nix-eval-jobs }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "colmena";
|
||||
|
@ -13,9 +13,9 @@ rustPlatform.buildRustPackage rec {
|
|||
|
||||
nativeBuildInputs = [ installShellFiles ];
|
||||
|
||||
propagatedBuildInputs = lib.optional (nix-eval-jobs != null) nix-eval-jobs;
|
||||
buildInputs = [ nix-eval-jobs ];
|
||||
|
||||
NIX_EVAL_JOBS = lib.optionalString (nix-eval-jobs != null) "${nix-eval-jobs}/bin/nix-eval-jobs";
|
||||
NIX_EVAL_JOBS = "${nix-eval-jobs}/bin/nix-eval-jobs";
|
||||
|
||||
preBuild = ''
|
||||
if [[ -z "$NIX_EVAL_JOBS" ]]; then
|
||||
|
|
Loading…
Reference in a new issue