diff options
| author | Ralph Amissah <ralph.amissah@gmail.com> | 2020-09-26 14:44:34 -0400 | 
|---|---|---|
| committer | Ralph Amissah <ralph.amissah@gmail.com> | 2020-10-19 13:41:43 -0400 | 
| commit | 124782c1745c4dbfd3dc84f5e50e0214899e39f7 (patch) | |
| tree | 7258689c84e5cb4e199685cafb0533374962f5f0 /nixDevEnv/shells/ldc.nix | |
| parent | shell.nix (diff) | |
nixify step
Diffstat (limited to 'nixDevEnv/shells/ldc.nix')
| -rw-r--r-- | nixDevEnv/shells/ldc.nix | 10 | 
1 files changed, 10 insertions, 0 deletions
diff --git a/nixDevEnv/shells/ldc.nix b/nixDevEnv/shells/ldc.nix new file mode 100644 index 0000000..1900112 --- /dev/null +++ b/nixDevEnv/shells/ldc.nix @@ -0,0 +1,10 @@ +{ pkgs ? import <nixpkgs> { overlays = [ (import ../overlays/ldcVersion.nix) ]; } }: +  pkgs.mkShell { +    buildInputs = with pkgs; [ +      dub +      ninja +      ldc +      sqlite +      validatePkgConfig +  ]; +}  | 
