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

stdenv.mkDerivation {
  name = "webgit";
  buildInputs = with pkgs; [
    rustracer rustup clangStdenv

    cargo-watch openssl pkg-config
  ];
}