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