Skip to content

Instantly share code, notes, and snippets.

@PyroLagus
Created July 6, 2015 18:21
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 PyroLagus/9668e069c8eae31f8e6d to your computer and use it in GitHub Desktop.
Save PyroLagus/9668e069c8eae31f8e6d to your computer and use it in GitHub Desktop.
{ stdenv, fetchFromGitHub, cmake
, wayland, pixman, libxkbcommon, udev, libinput
, libX11, libxcb, x11
, mesa #nvidia_x11
, dbus, systemd
}:
stdenv.mkDerivation rec {
name = "wlc-${version}";
version = "5453a91201";
srcs = [
(fetchFromGitHub {
owner = "Cloudef";
repo = "wlc";
rev = "5453a91201a6b90f1f7fc093ddb578bfad18461d";
sha256 = "1dy2i34b1bdlpf0v77ghdpimip5jdhimwqibhxa5vzxnna4ymcyw";
name = "wlc";
})
(fetchFromGitHub {
owner = "Cloudef";
repo = "chck";
rev = "a11a7c064d786706269e2b9f5516d898fec10402";
sha256 = "0db4zg9mjkci6q9x868bn86avyhpmivwjk9cyggr502ng1pasivx";
name = "chck";
})
];
preUnpack = "mv -r ./chck ./wlc/lib/chck/src";
buildInputs = [ cmake wayland pixman libxkbcommon udev libinput libX11 libxcb dbus systemd ];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment