mirror of
https://github.com/catppuccin/vscode-icons.git
synced 2026-01-09 05:31:03 +08:00
16 lines
344 B
Nix
16 lines
344 B
Nix
{pkgs ? import <nixpkgs> {}}: let
|
|
inherit (pkgs.stdenv) isLinux;
|
|
inherit (pkgs) lib;
|
|
in
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; ([
|
|
nodejs
|
|
nodejs.pkgs.pnpm
|
|
]
|
|
++ lib.optionals isLinux [chromium]);
|
|
PUPPETEER_EXECUTABLE_PATH =
|
|
if isLinux
|
|
then "${pkgs.chromium}/bin/chromium"
|
|
else "";
|
|
}
|