Skip to content

Instantly share code, notes, and snippets.

@paulkoerbitz
Created December 25, 2015 11:04
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 paulkoerbitz/9876d24b07e4ad94f18e to your computer and use it in GitHub Desktop.
Save paulkoerbitz/9876d24b07e4ad94f18e to your computer and use it in GitHub Desktop.
with import <nixpkgs> {};
let wlc = import ./wlc.nix pkgs;
in
stdenv.mkDerivation {
name = "swaywm-0.1";
src = fetchgit {
url = https://github.com/SirCmpwn/sway.git;
rev = "adf5b8fed70b3b61e67f16c3bec4a9b25d8ec831";
sha256 = "09sphk8j1m2blv057614ql8d2jllxvm008is9xlc1nj6kd2lxbk6";
};
buildInputs = [
cmake
wlc
wayland
xwayland
asciidoc
pcre
json_c
gnome.pango
cairo
gdk_pixbuf
pam
libxkbcommon
];
meta = {
description = "A i3-like tiling window manager for wayland";
homepage = http://www.swaywm.org;
license = "GPLv2+";
maintainers = [ ];
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment