1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
{ 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 ]; }