mirror of
https://github.com/SebastianStork/advent-of-code.git
synced 2026-01-21 14:31:34 +01:00
27 lines
555 B
Nix
27 lines
555 B
Nix
{
|
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
|
|
|
|
outputs =
|
|
{ self, nixpkgs }:
|
|
let
|
|
system = "x86_64-linux";
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
in
|
|
{
|
|
devShells.${system}.qtcreator =
|
|
pkgs.mkShell.override
|
|
{
|
|
stdenv = pkgs.clangStdenv;
|
|
}
|
|
{
|
|
packages = with pkgs; [
|
|
gdb
|
|
clang-tools
|
|
qt6.full
|
|
qtcreator
|
|
];
|
|
};
|
|
|
|
formatter.${system} = pkgs.nixfmt-rfc-style;
|
|
};
|
|
}
|