Skip to content

Commit

Permalink
flake.lock: Update
Browse files Browse the repository at this point in the history
All downstream patches to nix-eval-jobs have been merged and released
as part of nix-eval-jobs 0.0.4.
  • Loading branch information
zhaofengli committed Mar 20, 2022
1 parent f81170c commit 017ccf1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 26 deletions.
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 0 additions & 22 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
in utils.lib.eachSystem supportedSystems (system: let
pkgs = import nixpkgs {
inherit system;
overlays = [ self._evalJobsOverlay ];
};
in rec {
# We still maintain the expression in a Nixpkgs-acceptable form
Expand Down Expand Up @@ -66,27 +65,6 @@
'';
};
}) // {
# For use in integration tests
_evalJobsOverlay =
(final: prev: {
nix-eval-jobs = prev.nix-eval-jobs.overrideAttrs (old: {
version = old.version + "-colmena";
patches = (old.patches or []) ++ [
# Add --show-trace
(final.fetchpatch {
url = "https://github.com/nix-community/nix-eval-jobs/commit/1e0f309fefc9b2d597f8475a74c82ce29c189152.patch";
sha256 = "sha256-246t3SGRA/9JsV2XPcI4Exp+TxmyYBoldQ43Wr5CcsM=";
})

# Fix buffering when piped
(final.fetchpatch {
url = "https://github.com/zhaofengli/nix-eval-jobs/commit/6d61193286aedd4e514fd8f375b2000b95fff4fb.patch";
sha256 = "sha256-yOuUwKHSS7Bt3q3nClirVk7DzJhxNFFZ8JnYjrPRJVc=";
})
];
});
});

overlay = final: prev: {
colmena = final.callPackage ./package.nix { };
};
Expand Down
1 change: 0 additions & 1 deletion integration-tests/nixpkgs.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ let
flake = (import ../flake-compat.nix).defaultNix;
in import flake.inputs.nixpkgs.outPath {
overlays = [
flake._evalJobsOverlay
flake.overlay
];
}

0 comments on commit 017ccf1

Please sign in to comment.