2017-10-31 21:31:05 +00:00
|
|
|
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig
|
2018-02-24 12:06:44 +00:00
|
|
|
, wayland, libGL, wayland-protocols, libinput, libxkbcommon, pixman
|
2018-03-28 14:24:33 +01:00
|
|
|
, xcbutilwm, libX11, libcap, xcbutilimage, xcbutilerrors, mesa_noglu
|
2017-10-31 21:31:05 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
let pname = "wlroots";
|
2018-03-17 14:06:49 +00:00
|
|
|
version = "unstable-2018-03-16";
|
2017-10-31 21:31:05 +00:00
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "swaywm";
|
|
|
|
repo = "wlroots";
|
2018-03-17 14:06:49 +00:00
|
|
|
rev = "9cc875429b40e2567b219f8e9ffd23316d136204";
|
|
|
|
sha256 = "1prhic3pyf9n65qfg5akzkc9qv2z3ab60dpcacr7wgr9nxrvnsdq";
|
2017-10-31 21:31:05 +00:00
|
|
|
};
|
|
|
|
|
2017-12-23 13:02:59 +00:00
|
|
|
# $out for the library and $bin for rootston
|
|
|
|
outputs = [ "out" "bin" ];
|
2017-10-31 21:31:05 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ meson ninja pkgconfig ];
|
|
|
|
|
|
|
|
buildInputs = [
|
2018-02-24 12:06:44 +00:00
|
|
|
wayland libGL wayland-protocols libinput libxkbcommon pixman
|
2018-03-28 14:24:33 +01:00
|
|
|
xcbutilwm libX11 libcap xcbutilimage xcbutilerrors mesa_noglu
|
2017-10-31 21:31:05 +00:00
|
|
|
];
|
|
|
|
|
2017-12-23 13:02:59 +00:00
|
|
|
# Install rootston (the reference compositor) to $bin
|
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $bin/bin
|
|
|
|
cp rootston/rootston $bin/bin/
|
|
|
|
mkdir $bin/lib
|
2018-03-17 14:06:49 +00:00
|
|
|
cp libwlroots* $bin/lib/
|
2017-12-23 13:02:59 +00:00
|
|
|
patchelf --set-rpath "$bin/lib:${stdenv.lib.makeLibraryPath buildInputs}" $bin/bin/rootston
|
2017-12-23 16:25:19 +00:00
|
|
|
mkdir $bin/etc
|
|
|
|
cp ../rootston/rootston.ini.example $bin/etc/rootston.ini
|
2017-12-23 13:02:59 +00:00
|
|
|
'';
|
|
|
|
|
2017-10-31 21:31:05 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A modular Wayland compositor library";
|
|
|
|
inherit (src.meta) homepage;
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ primeos ];
|
2018-04-06 20:10:42 +01:00
|
|
|
# Marked as broken until the first official/stable release (upstream
|
|
|
|
# request). See #38344 for the public discussion.
|
|
|
|
broken = true;
|
2017-10-31 21:31:05 +00:00
|
|
|
};
|
|
|
|
}
|