aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/build_depends/dub2nix/shell.nix
blob: 002ff55e9f311b0a1e0735726ddfbf4a0c08205d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
with import <nixpkgs> {};

let
  pkg = import ./default.nix { inherit pkgs; };

in mkShell {

  buildInputs = [
    # additional runtime dependencies go here
  ] ++ pkg.buildInputs ++ pkg.propagatedBuildInputs;

  nativeBuildInputs = [
    # additional dev dependencies go here
  ] ++ pkg.nativeBuildInputs;

}