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