mirror of
https://github.com/exoticorn/microw8.git
synced 2026-01-20 11:16:42 +01:00
7 lines
171 B
Nix
7 lines
171 B
Nix
with import <nixpkgs> {};
|
|
stdenv.mkDerivation {
|
|
name = "dev-environment"; # Probably put a more meaningful name here
|
|
buildInputs = [ pkg-config libxkbcommon ];
|
|
}
|
|
|