netatmo-algo/shell.nix

11 lines
124 B
Nix
Raw Normal View History

2022-02-11 19:03:22 +01:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
clang
just
tup
valgrind
];
}