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

stdenv.mkDerivation {
  name = "atomicptr";
  buildInputs = with pkgs; [
    rustc cargo rust-analyzer rustfmt
  ];
}