diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2020-10-19 13:38:37 -0400 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2020-10-20 12:12:28 -0400 |
commit | 109d32b1183717ac19ee2109abb41177bf9e71ff (patch) | |
tree | 3e45be8dd66e6e4e7f86469dcf4d225bdc9ce55f /nixDevEnv/shells/dmd.nix | |
parent | spine info update (diff) |
project nix shell(s)
Diffstat (limited to 'nixDevEnv/shells/dmd.nix')
-rw-r--r-- | nixDevEnv/shells/dmd.nix | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/nixDevEnv/shells/dmd.nix b/nixDevEnv/shells/dmd.nix deleted file mode 100644 index 0c68cc0..0000000 --- a/nixDevEnv/shells/dmd.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ pkgs ? import <nixpkgs> { overlays = []; } }: -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 - dmd - rdmd - sqlite - dub2nix - nix-prefetch-git - ]; -} |