Commit f7fe126 1 parent 800d9c6 commit f7fe126 Copy full SHA for f7fe126
File tree 2 files changed +29
-19
lines changed
2 files changed +29
-19
lines changed Original file line number Diff line number Diff line change 65
65
nodejs = fixedNode ;
66
66
} ;
67
67
68
+ rustChan = pkgs . rust-bin . stable . "1.73.0" . rust . override {
69
+ targets = [ ] ;
70
+ extensions = [
71
+ "clippy"
72
+ "rust-src"
73
+ "rustc-dev"
74
+ "rustfmt"
75
+ "rust-analyzer"
76
+ ] ;
77
+ } ;
78
+
68
79
scriptFiles = builtins . attrNames ( builtins . readDir ./scripts ) ;
69
80
scriptBins =
70
81
map (
79
90
in
80
91
with pkgs ; {
81
92
devShells . default = mkShell {
93
+ nativeBuildInputs = [ rustChan ] ;
82
94
buildInputs =
83
95
[
84
- # API
85
- ( python310 . withPackages pythonPackages )
86
- poetry
87
-
88
- # EDITOAST
96
+ # Tools & Libs
97
+ cargo-watch
98
+ cargo-tarpaulin
89
99
osmium-tool
90
100
geos
91
- postgresql
92
101
openssl
93
102
pkg-config
94
- rustPackages . clippy
95
- cargo-watch
96
- cargo-tarpaulin
97
- rust-analyzer
98
- rust-bin . stable . latest . default
103
+ postgresql
104
+
105
+ # API
106
+ ( python310 . withPackages pythonPackages )
107
+ poetry
99
108
100
- # CORE
109
+ # Core
101
110
jdk17
102
111
103
- # FRONT
112
+ # Front
104
113
fixedNodePackages . create-react-app
105
114
fixedNodePackages . eslint
106
115
fixedNodePackages . yarn
You can’t perform that action at this time.
0 commit comments