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 = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-21.05"
}
};
outputs = { self, nixpkgs }: {
let
@ -11,15 +11,15 @@
pkgs = import nixpkgs {
inherit system;
};
in {
devShell = pkgs.mkShell rec (
in {
devShell = pkgs.mkShell rec {
name = "gcc-devel";
packages = with pkgs; [
libgcc
gdb
gef
];
)
};
};
};
}