2019-05-08 22:53:27 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libmatchbox, libX11, libXext }:
|
2010-08-10 00:40:51 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "matchbox";
|
2016-05-02 12:26:32 +02:00
|
|
|
version = "1.2";
|
2010-08-10 00:40:51 +02:00
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libmatchbox ];
|
2019-05-08 22:53:27 +02:00
|
|
|
NIX_LDFLAGS = "-lX11 -L${libX11}/lib -lXext -L${libXext}/lib";
|
2010-08-10 00:40:51 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 20:43:35 +02:00
|
|
|
url = "https://downloads.yoctoproject.org/releases/matchbox/matchbox-window-manager/${version}/matchbox-window-manager-${version}.tar.bz2";
|
2010-08-10 00:40:51 +02:00
|
|
|
sha256 = "1zyfq438b466ygcz78nvsmnsc5bhg4wcfnpxb43kbkwpyx53m8l1";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "X window manager for non-desktop embedded systems";
|
2019-05-08 22:53:27 +02:00
|
|
|
homepage = "https://www.yoctoproject.org/software-item/matchbox/";
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2010-08-10 00:40:51 +02:00
|
|
|
};
|
|
|
|
}
|