File tree 2 files changed +14
-3
lines changed
2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 1
- use flake
1
+ use flake
Original file line number Diff line number Diff line change 9
9
( final : prev : rec {
10
10
nodejs = prev . nodejs_latest ;
11
11
pnpm = prev . nodePackages . pnpm ;
12
- yarn = ( prev . yarn . override { inherit nodejs ; } ) ;
13
12
} )
14
13
] ;
15
14
supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ] ;
20
19
{
21
20
devShells = forEachSupportedSystem ( { pkgs } : {
22
21
default = pkgs . mkShell {
23
- packages = with pkgs ; [ nodejs pnpm yarn ] ;
22
+ packages = ( with pkgs ;
23
+ [
24
+ nodejs python3 libcxx systemd libpulseaudio libdrm mesa stdenv . cc . cc
25
+ alsa-lib atk at-spi2-atk at-spi2-core cairo cups dbus expat fontconfig
26
+ freetype gdk-pixbuf glib glibc gtk3 libnotify libuuid nspr nss pango systemd
27
+ libappindicator-gtk3 libdbusmenu libxkbcommon zlib
28
+ ]
29
+ ) ++ ( with pkgs . xorg ;
30
+ [
31
+ libXScrnSaver libXrender libXcursor libXdamage libXext libXfixes libXi
32
+ libXrandr libX11 libXcomposite libxshmfence libXtst libxcb
33
+ ]
34
+ ) ;
24
35
} ;
25
36
} ) ;
26
37
} ;
You can’t perform that action at this time.
0 commit comments