summaryrefslogtreecommitdiff
path: root/shells
diff options
context:
space:
mode:
authorozpv <39195175+ozpv@users.noreply.github.com>2024-08-28 08:00:33 +0000
committerGitHub <noreply@github.com>2024-08-28 08:00:33 +0000
commitafdf322037c4cf16f9f6902d5decf4414a7d78de (patch)
treee6d2d650837cba1d765e1fafd32392096cf71c36 /shells
parent1049f99b83557356ad52fde450b2316ee9950b99 (diff)
add vm stuff
Diffstat (limited to 'shells')
-rw-r--r--shells/csci.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/shells/csci.nix b/shells/csci.nix
new file mode 100644
index 0000000..c0f7dfb
--- /dev/null
+++ b/shells/csci.nix
@@ -0,0 +1,8 @@
+{ pkgs ? import <nixpkgs> {} }:
+
+pkgs.mkShell {
+ packages = with pkgs; [
+ clang
+ llvmPackages.bintools
+ ];
+}