bug hunting

This commit is contained in:
twoneis 2023-10-30 15:39:45 +01:00
parent cd033f6bc6
commit ba55307699

View file

@ -3,7 +3,7 @@
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-21.05" nixpkgs.url = "github:nixos/nixpkgs/nixos-21.05"
} };
outputs = { self, nixpkgs }: { outputs = { self, nixpkgs }: {
let let
@ -12,14 +12,14 @@
inherit system; inherit system;
}; };
in { in {
devShell = pkgs.mkShell rec ( devShell = pkgs.mkShell rec {
name = "gcc-devel"; name = "gcc-devel";
packages = with pkgs; [ packages = with pkgs; [
libgcc libgcc
gdb gdb
gef gef
]; ];
) };
}; };
}; };
} }