started working on flake for gcc development
This commit is contained in:
parent
ecc0b4f0ff
commit
cd033f6bc6
1 changed files with 25 additions and 0 deletions
25
gcc-devel/flake.nix
Normal file
25
gcc-devel/flake.nix
Normal 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
|
||||
];
|
||||
)
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Reference in a new issue