Skip to content

Commit 0e978b4

Browse files
committed
chore(flake): remove nixpkgs-review overlay
1 parent 9e5564b commit 0e978b4

File tree

2 files changed

+3
-93
lines changed

2 files changed

+3
-93
lines changed

flake.lock

Lines changed: 1 addition & 80 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,24 @@
11
{
22
inputs = {
33
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
4-
nixpkgs-review.url = "github:Mic92/nixpkgs-review";
54
};
65

76
outputs =
8-
{
9-
self,
10-
nixpkgs,
11-
nixpkgs-review,
12-
}:
7+
{ self, nixpkgs }:
138

149
let
1510
inherit (nixpkgs) lib;
1611

17-
eachSystem = f: lib.genAttrs systems (system: f (import nixpkgs { inherit system overlays; }));
12+
eachSystem = f: lib.genAttrs systems (system: f nixpkgs.legacyPackages.${system});
1813
systems = [
1914
"x86_64-linux"
2015
"aarch64-linux"
2116
"x86_64-darwin"
2217
"aarch64-darwin"
2318
];
24-
25-
overlays = [ self.overlays.nixpkgs-review ];
2619
in
2720

2821
{
29-
overlays.nixpkgs-review = final: prev: {
30-
inherit (nixpkgs-review.packages.${final.stdenv.hostPlatform.system}) nixpkgs-review;
31-
};
32-
3322
legacyPackages = eachSystem lib.id;
3423

3524
formatter = eachSystem (

0 commit comments

Comments
 (0)