Files
microw8/default.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 ];
}