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

stdenv.mkDerivation {
  name = "qaul";
  buildInputs = with pkgs; [
    rustracer rustup clangStdenv
    openssl pkg-config
  ];
}