11 lines
168 B
Nix
11 lines
168 B
Nix
|
{
|
||
|
pkgs ? import <nixpkgs> {},
|
||
|
unstable ? import <nixos-unstable> {},
|
||
|
}:
|
||
|
|
||
|
with pkgs;
|
||
|
mkShell {
|
||
|
buildInputs = [ sfml ];
|
||
|
nativeBuildInputs = [ ccls cmake ];
|
||
|
}
|