wlc: cleanup
This commit is contained in:
parent
63bbada520
commit
c7285c3342
1 changed files with 19 additions and 8 deletions
|
@ -1,11 +1,17 @@
|
||||||
{ stdenv, fetchFromGitHub, cmake, pkgconfig
|
{ stdenv, fetchFromGitHub, fetchpatch, cmake, pkgconfig
|
||||||
, wayland, pixman, libxkbcommon, libinput, libxcb, xcbutilwm, xcbutilimage, mesa
|
, wayland, pixman, libxkbcommon, libinput, xcbutilwm, xcbutilimage, mesa_noglu
|
||||||
, libdrm, udev, libX11, libXdamage, systemd, dbus_libs, wayland-protocols
|
, libX11, dbus_libs, wayland-protocols
|
||||||
, libpthreadstubs, libXau, libXdmcp, libXext, libXxf86vm
|
, libpthreadstubs, libXdmcp, libXext
|
||||||
, withOptionalPackages ? true, zlib, valgrind, doxygen
|
, withOptionalPackages ? true, zlib, valgrind, doxygen
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
let
|
||||||
|
# for 0.0.10
|
||||||
|
xwaylandPatch = fetchpatch {
|
||||||
|
url = "https://github.com/Cloudef/wlc/commit/a130f6006560fb8ac02fb59a90ced1659563f9ca.diff";
|
||||||
|
sha256 = "0kzcbqklcyg8bganm65di8cif6dpc8bkrsvkjia09kr92lymxm2c";
|
||||||
|
};
|
||||||
|
in stdenv.mkDerivation rec {
|
||||||
name = "wlc-${version}";
|
name = "wlc-${version}";
|
||||||
version = "0.0.10";
|
version = "0.0.10";
|
||||||
|
|
||||||
|
@ -17,16 +23,21 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "09kvwhrpgkxlagn9lgqxc80jbg56djn29a6z0n6h0dsm90ysyb2k";
|
sha256 = "09kvwhrpgkxlagn9lgqxc80jbg56djn29a6z0n6h0dsm90ysyb2k";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
xwaylandPatch
|
||||||
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake pkgconfig ];
|
nativeBuildInputs = [ cmake pkgconfig ];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
wayland pixman libxkbcommon libinput libxcb xcbutilwm xcbutilimage mesa
|
wayland pixman libxkbcommon libinput xcbutilwm xcbutilimage mesa_noglu
|
||||||
libdrm udev libX11 libXdamage systemd dbus_libs wayland-protocols
|
libX11 dbus_libs wayland-protocols
|
||||||
libpthreadstubs libXau libXdmcp libXext libXxf86vm ]
|
libpthreadstubs libXdmcp libXext ]
|
||||||
++ stdenv.lib.optionals withOptionalPackages [ zlib valgrind doxygen ];
|
++ stdenv.lib.optionals withOptionalPackages [ zlib valgrind doxygen ];
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
checkTarget = "test";
|
checkTarget = "test";
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A library for making a simple Wayland compositor";
|
description = "A library for making a simple Wayland compositor";
|
||||||
|
|
Loading…
Reference in a new issue