From 9bd23c22358f12da32a3a3fa3a7cc114b2aa0a0e Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Thu, 24 Mar 2022 16:51:11 +0800 Subject: [PATCH] shells/gnome: add blueprint-compiler to deps --- shells/gnome.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/shells/gnome.nix b/shells/gnome.nix index c70692e4..51337c4f 100644 --- a/shells/gnome.nix +++ b/shells/gnome.nix @@ -3,7 +3,7 @@ # projects. # # These include toolkits for C, Rust, and GNOME JavaScript. -{ mkShell, cmake, meson, ninja, gtk4, libadwaita, gjs, pkg-config, rustPlatform, nodePackages }: +{ mkShell, cmake, meson, ninja, gtk4, libadwaita, gjs, pkg-config, rustPlatform, nodePackages, blueprint-compiler }: mkShell { packages = [ @@ -21,5 +21,8 @@ mkShell { # Creating desktop applications with JavaScript without Electron! nodePackages.typescript gjs + + # The new Blueprint language. + blueprint-compiler ]; }