aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: 571ba073407cfdf7f4d3f0407494e9a18a3fbe72 (plain)
1
2
3
4
5
6
7
8
with import <nixpkgs> {};

stdenv.mkDerivation {
  name = "webgit";
  buildInputs = with pkgs; [
    rustracer rustup clangStdenv cargo-watch python3
  ];
}