File tree Expand file tree Collapse file tree 2 files changed +28
-20
lines changed
Expand file tree Collapse file tree 2 files changed +28
-20
lines changed Original file line number Diff line number Diff line change 55 nixpkgs . url = "nixpkgs/nixpkgs-unstable" ;
66 } ;
77
8- outputs = { self , nixpkgs } @inputs :
8+ outputs =
9+ { self , nixpkgs } @inputs :
910 let
1011 forAllSystems = nixpkgs . lib . genAttrs nixpkgs . lib . platforms . all ;
1112 in
12- {
13- devShell = forAllSystems ( system :
14- let
15- pkgs = import nixpkgs { inherit system ; } ;
16- env = pkgs . bundlerEnv {
17- name = "sqlint" ;
18- gemdir = ./. ;
19- groups = [ "default" "development" "test" ] ;
13+ {
14+ devShell = forAllSystems (
15+ system :
16+ let
17+ pkgs = import nixpkgs { inherit system ; } ;
18+ env = pkgs . bundlerEnv {
19+ name = "sqlint" ;
20+ gemdir = ./. ;
21+ groups = [
22+ "default"
23+ "development"
24+ "test"
25+ ] ;
2026
21- meta = with pkgs . lib ;
22- {
27+ meta = with pkgs . lib ; {
2328 description = "sqlint" ;
2429 platforms = platforms . unix ;
2530 } ;
26- } ;
27- in
28- pkgs . mkShell {
29- buildInputs = [ env pkgs . bundix ] ;
30- }
31+ } ;
32+ in
33+ pkgs . mkShell {
34+ buildInputs = [
35+ env
36+ pkgs . bundix
37+ ] ;
38+ }
3139 ) ;
32- } ;
40+ } ;
3341}
You can’t perform that action at this time.
0 commit comments