aboutsummaryrefslogtreecommitdiffhomepage
path: root/nixDevEnv/shells/ldc.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixDevEnv/shells/ldc.nix')
-rw-r--r--nixDevEnv/shells/ldc.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/nixDevEnv/shells/ldc.nix b/nixDevEnv/shells/ldc.nix
deleted file mode 100644
index 31cfcfb..0000000
--- a/nixDevEnv/shells/ldc.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ pkgs ? import <nixpkgs> {
- overlays = [
- (import ./nixDevEnv/overlays/ldcVersion.nix)
- ]; }
-}:
-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
- ];
-}