{ description = "A very basic flake"; inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; utils = { url = "github:numtide/flake-utils"; }; }; outputs = { self, nixpkgs, utils, ... }: let system = "x86_64-linux"; pkgs = import nixpkgs { inherit system; }; in { devShell = pkgs.mkShell rec { name = "gcc-devel"; packages = with pkgs; [ cmake libgcc gdb gef ]; }; }; }