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