chore(c): Update
This commit is contained in:
parent
a9361017dd
commit
b3f64edc8c
2 changed files with 16 additions and 12 deletions
16
c/flake.nix
16
c/flake.nix
|
@ -1,12 +1,13 @@
|
|||
{
|
||||
description = "C Flake";
|
||||
|
||||
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
||||
inputs.flake-utils.url = "github:numtide/flake-utils";
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
||||
flake-utils.url = "github:numtide/flake-utils";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, flake-utils }:
|
||||
flake-utils.lib.eachDefaultSystem
|
||||
( system:
|
||||
outputs = { self, flake-utils, nixpkgs }:
|
||||
flake-utils.lib.eachDefaultSystem (system:
|
||||
let
|
||||
pkgs = import nixpkgs {
|
||||
inherit system;
|
||||
|
@ -18,10 +19,13 @@
|
|||
cmake
|
||||
gcc
|
||||
gnumake
|
||||
|
||||
valgrind
|
||||
|
||||
astyle
|
||||
|
||||
# You might want to use your own IDE.
|
||||
jetbrains.clion
|
||||
# (jetbrains.plugins.addPlugins jetbrains.clion [ "github-copilot" ])
|
||||
];
|
||||
};
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue