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