diff options
author | cjen1 <cjj39@cam.ac.uk> | 2021-08-05 00:49:01 +0100 |
---|---|---|
committer | cjen1 <cjj39@cam.ac.uk> | 2021-08-05 00:49:01 +0100 |
commit | 8f77008ba9d352783129bc87274f017ea81f7194 (patch) | |
tree | d2781e5529a12319b9a0891b18dc2eb35e090a2f /shell.nix | |
parent | b8cb2d942a6287a95e720278bbfe7563352ea48d (diff) |
Add envrc for nix
Diffstat (limited to 'shell.nix')
-rw-r--r-- | shell.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..6548e72 --- /dev/null +++ b/shell.nix @@ -0,0 +1,8 @@ +{ pkgs ? import <nixpkgs> {} }: + +pkgs.mkShell { + buildInputs = [ + pkgs.cmake + pkgs.cq-editor + ]; +} |