diff options
| author | Ralph Amissah <ralph.amissah@gmail.com> | 2020-11-13 22:58:26 -0500 | 
|---|---|---|
| committer | Ralph Amissah <ralph.amissah@gmail.com> | 2020-11-13 23:19:57 -0500 | 
| commit | 0de4f2c1f970d911cf413bab89ec91896b12c30b (patch) | |
| tree | cb7b95cd325aed9c85949d0fa22a270c26eb012c /nixDevEnv/shells/shell-ldc-verUser.nix | |
| parent | org tags (diff) | |
ldc in need of newer dub
Diffstat (limited to 'nixDevEnv/shells/shell-ldc-verUser.nix')
| -rw-r--r-- | nixDevEnv/shells/shell-ldc-verUser.nix | 22 | 
1 files changed, 6 insertions, 16 deletions
diff --git a/nixDevEnv/shells/shell-ldc-verUser.nix b/nixDevEnv/shells/shell-ldc-verUser.nix index 9d2c3e1..1c9c092 100644 --- a/nixDevEnv/shells/shell-ldc-verUser.nix +++ b/nixDevEnv/shells/shell-ldc-verUser.nix @@ -1,17 +1,7 @@ -{ pkgs ? import <nixpkgs> {}, }: -let -  dub2nix-src = fetchTarball { -    url = "https://github.com/lionello/dub2nix/archive/master.tar.gz"; -  }; -  dub2nix = (import dub2nix-src) { inherit pkgs; }; -in pkgs.mkShell { -  buildInputs = with pkgs; [ -    nix -    dub -    ldc -    rdmd -    sqlite -    dub2nix -    nix-prefetch-git -  ]; +{ pkgs ? import <nixpkgs> { +  overlays = [ (import ../overlays/ldcVersion.nix) ]; +} }: +pkgs.mkShell { +  buildInputs = with pkgs; +  [ (import ./packages-ldc.nix { inherit pkgs; }) ];  }  | 
