File tree 1 file changed +11
-18
lines changed
1 file changed +11
-18
lines changed Original file line number Diff line number Diff line change 1
- { system ? builtins . currentSystem } :
2
- (
3
- import
4
- (
5
- let
6
- lock = builtins . fromJSON ( builtins . readFile ./flake.lock ) ;
7
- in
8
- fetchTarball {
9
- url = "https://github.com/edolstra/flake-compat/archive/${ lock . nodes . flake-compat . locked . rev } .tar.gz" ;
10
- sha256 = lock . nodes . flake-compat . locked . narHash ;
11
- }
12
- )
13
- {
14
- src = ./. ;
15
- inherit system ;
16
- }
17
- )
18
- . defaultNix
1
+ { ...} : let
2
+ flake-lock = builtins . fromJSON ( builtins . readFile ./flake.lock ) ;
3
+ flake-compat = fetchTarball {
4
+ url = "https://github.com/edolstra/flake-compat/archive/${ flake-lock . nodes . flake-compat . locked . rev } .tar.gz" ;
5
+ sha256 = flake-lock . nodes . flake-compat . locked . narHash ;
6
+ } ;
7
+ self = import flake-compat { src = ./. ; } ;
8
+ packages = self . defaultNix . outputs . packages . ${ builtins . currentSystem } ;
9
+ in
10
+ packages
11
+ // self . defaultNix
You can’t perform that action at this time.
0 commit comments