feat: swap canvas for opengl context
This commit is contained in:
44
flake.nix
44
flake.nix
@@ -3,29 +3,33 @@
|
||||
|
||||
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
|
||||
outputs = {
|
||||
self,
|
||||
nixpkgs,
|
||||
}: let
|
||||
system = "x86_64-linux";
|
||||
pkgs = import nixpkgs {inherit system;};
|
||||
in {
|
||||
devShells.${system}.default = pkgs.mkShell {
|
||||
nativeBuildInputs = with pkgs; [
|
||||
gcc
|
||||
clang-tools
|
||||
lldb
|
||||
outputs =
|
||||
{
|
||||
self,
|
||||
nixpkgs,
|
||||
}:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
pkgs = import nixpkgs { inherit system; };
|
||||
in
|
||||
{
|
||||
devShells.${system}.default = pkgs.mkShell {
|
||||
nativeBuildInputs = with pkgs; [
|
||||
gcc
|
||||
clang-tools
|
||||
lldb
|
||||
|
||||
meson
|
||||
ninja
|
||||
pkg-config
|
||||
meson
|
||||
ninja
|
||||
pkg-config
|
||||
|
||||
gtk4
|
||||
gtk4
|
||||
libepoxy
|
||||
|
||||
gdb
|
||||
];
|
||||
gdb
|
||||
];
|
||||
|
||||
shellHook = "";
|
||||
shellHook = "";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user