diff options
Diffstat (limited to 'shells')
| -rw-r--r-- | shells/ada/.envrc | 1 | ||||
| -rw-r--r-- | shells/ada/shell.nix | 4 | ||||
| -rw-r--r-- | shells/amber/.envrc | 1 | ||||
| -rw-r--r-- | shells/amber/shell.nix | 4 | ||||
| -rw-r--r-- | shells/cobol/.envrc | 1 | ||||
| -rw-r--r-- | shells/cobol/shell.nix | 4 | ||||
| -rw-r--r-- | shells/hare/.envrc | 1 | ||||
| -rw-r--r-- | shells/hare/shell.nix | 4 | ||||
| -rw-r--r-- | shells/tex/.envrc | 1 | ||||
| -rw-r--r-- | shells/tex/shell.nix | 4 |
10 files changed, 25 insertions, 0 deletions
diff --git a/shells/ada/.envrc b/shells/ada/.envrc new file mode 100644 index 0000000..1d953f4 --- /dev/null +++ b/shells/ada/.envrc @@ -0,0 +1 @@ +use nix diff --git a/shells/ada/shell.nix b/shells/ada/shell.nix new file mode 100644 index 0000000..1dc3de0 --- /dev/null +++ b/shells/ada/shell.nix @@ -0,0 +1,4 @@ +{ + pkgs ? import <nixpkgs> { }, +}: +pkgs.mkShell { packages = [ pkgs.alire ]; } diff --git a/shells/amber/.envrc b/shells/amber/.envrc new file mode 100644 index 0000000..1d953f4 --- /dev/null +++ b/shells/amber/.envrc @@ -0,0 +1 @@ +use nix diff --git a/shells/amber/shell.nix b/shells/amber/shell.nix new file mode 100644 index 0000000..229768e --- /dev/null +++ b/shells/amber/shell.nix @@ -0,0 +1,4 @@ +{ + pkgs ? import <nixpkgs> { }, +}: +pkgs.mkShell { packages = [ pkgs.amber-lang ]; } 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 ]; } diff --git a/shells/hare/.envrc b/shells/hare/.envrc new file mode 100644 index 0000000..1d953f4 --- /dev/null +++ b/shells/hare/.envrc @@ -0,0 +1 @@ +use nix diff --git a/shells/hare/shell.nix b/shells/hare/shell.nix new file mode 100644 index 0000000..9fbe37c --- /dev/null +++ b/shells/hare/shell.nix @@ -0,0 +1,4 @@ +{ + pkgs ? import <nixpkgs> { }, +}: +pkgs.mkShell { packages = [ pkgs.hare ]; } diff --git a/shells/tex/.envrc b/shells/tex/.envrc new file mode 100644 index 0000000..1d953f4 --- /dev/null +++ b/shells/tex/.envrc @@ -0,0 +1 @@ +use nix diff --git a/shells/tex/shell.nix b/shells/tex/shell.nix new file mode 100644 index 0000000..738c9c7 --- /dev/null +++ b/shells/tex/shell.nix @@ -0,0 +1,4 @@ +{ + pkgs ? import <nixpkgs> { }, +}: +pkgs.mkShell { packages = [ pkgs.tectonic ]; } |