summaryrefslogtreecommitdiff
path: root/shells/cobol
diff options
context:
space:
mode:
Diffstat (limited to 'shells/cobol')
-rw-r--r--shells/cobol/.envrc1
-rw-r--r--shells/cobol/shell.nix4
2 files changed, 5 insertions, 0 deletions
diff --git a/shells/cobol/.envrc b/shells/cobol/.envrc
new file mode 100644
index 0000000..1d953f4
--- /dev/null
+++ b/shells/cobol/.envrc
@@ -0,0 +1 @@
+use nix
diff --git a/shells/cobol/shell.nix b/shells/cobol/shell.nix
new file mode 100644
index 0000000..ed99606
--- /dev/null
+++ b/shells/cobol/shell.nix
@@ -0,0 +1,4 @@
+{
+ pkgs ? import <nixpkgs> { },
+}:
+pkgs.mkShell { packages = [ pkgs.gnu-cobol ]; }