flakes/gcc-devel/flake.nix
2023-10-30 15:39:45 +01:00

25 lines
432 B
Nix

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