diff options
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 +  ]; +}  | 
