summaryrefslogtreecommitdiff
path: root/shell.nix
blob: 6b5b81fb446592e18725498e5c5f64728767617d (plain)
1
2
3
4
5
6
7
8
9
with (import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/release-24.05.tar.gz") {});

pkgs.mkShell {
	buildInputs = [
		ccls
		bear
		gdb
	];
}