netatmo-algo/shell.nix

11 lines
124 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
clang
just
tup
valgrind
];
}