From: Michal Sojka Date: Mon, 31 Jul 2023 10:29:30 +0000 (+0200) Subject: Add shell.nix X-Git-Url: http://rtime.felk.cvut.cz/gitweb/orte.git/commitdiff_plain/e68181e99a3c7b531f962591b873bcf882ba8fda Add shell.nix This is a simple development environment based on nix-shell, which contains the dependencies needed for building the project with meson. --- diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..7987744 --- /dev/null +++ b/shell.nix @@ -0,0 +1,13 @@ +with import {}; +mkShell { + nativeBuildInputs = [ + bashInteractive + popt + pkg-config + meson + ninja + gnome2.glib + gnome2.libIDL + qt4 + ]; +}