2010-08-10 00:40:51 +02:00
|
|
|
{ stdenv, fetchurl, libmatchbox, pkgconfig}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-05-02 12:26:32 +02:00
|
|
|
name = "matchbox-${version}";
|
|
|
|
version = "1.2";
|
2010-08-10 00:40:51 +02:00
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libmatchbox ];
|
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";
|
|
|
|
homepage = http://matchbox-project.org/;
|
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
|
|
|
};
|
|
|
|
}
|