Initial commit; mostly a clone of an example from smithay_client_toolkit

This commit is contained in:
TQ Hirsch
2022-05-02 17:46:39 +02:00
commit cbd1283e89
6 changed files with 551 additions and 0 deletions

13
shell.nix Normal file
View File

@@ -0,0 +1,13 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
libxkbcommon
# keep this line if you use bash
bashInteractive
];
nativeBuildInputs = with pkgs; [
pkg-config
];
}