File tree Expand file tree Collapse file tree 2 files changed +3
-93
lines changed
Expand file tree Collapse file tree 2 files changed +3
-93
lines changed Original file line number Diff line number Diff line change 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 (
You can’t perform that action at this time.
0 commit comments