Skip to content

Instantly share code, notes, and snippets.

@colemickens
Created November 5, 2020 00:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save colemickens/5abc47b7deaaf1995c4fb748d8dd8082 to your computer and use it in GitHub Desktop.
Save colemickens/5abc47b7deaaf1995c4fb748d8dd8082 to your computer and use it in GitHub Desktop.
with (import <nixpkgs> {
overlays = [
(
let
rev = "5220bb7c8b4b6e1503a2f1be120a9ee12f082ef1";
url = "https://github.com/colemickens/nixpkgs-wayland/archive/${rev}.tar.gz";
in (import (builtins.fetchTarball url))
)
];
});
mkShell {
nativeBuildInputs = [ pkgconfig meson ninja ];
buildInputs = [
wayland wayland-protocols
wayfire gtkmm3
];
enableParallelBuilding = true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment