project-kyoku/shell.nix

11 lines
168 B
Nix
Raw Normal View History

2022-09-18 17:27:22 +02:00
{
pkgs ? import <nixpkgs> {},
unstable ? import <nixos-unstable> {},
}:
with pkgs;
mkShell {
buildInputs = [ sfml ];
nativeBuildInputs = [ ccls cmake ];
}