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; }