started working on flake for gcc development

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

25
gcc-devel/flake.nix Normal file
View file

@ -0,0 +1,25 @@
{
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
];
)
};
};
}