]> rtime.felk.cvut.cz Git - orte.git/commitdiff
Add shell.nix master
authorMichal Sojka <michal.sojka@cvut.cz>
Mon, 31 Jul 2023 10:29:30 +0000 (12:29 +0200)
committerMichal Sojka <michal.sojka@cvut.cz>
Mon, 31 Jul 2023 10:29:30 +0000 (12:29 +0200)
This is a simple development environment based on nix-shell, which
contains the dependencies needed for building the project with meson.

shell.nix [new file with mode: 0644]

diff --git a/shell.nix b/shell.nix
new file mode 100644 (file)
index 0000000..7987744
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,13 @@
+with import <nixpkgs> {};
+mkShell {
+  nativeBuildInputs = [
+    bashInteractive
+    popt
+    pkg-config
+    meson
+    ninja
+    gnome2.glib
+    gnome2.libIDL
+    qt4
+  ];
+}