Adding the matchbox window manager

svn path=/nixpkgs/trunk/; revision=23076
This commit is contained in:
Lluís Batlle i Rossell
2010-08-09 22:40:51 +00:00
parent 9cba74c95a
commit a6aae3bc6d
3 changed files with 43 additions and 0 deletions
@@ -0,0 +1,18 @@
{ stdenv, fetchurl, libmatchbox, pkgconfig}:
stdenv.mkDerivation rec {
name = "matchbox-1.2.2";
buildInputs = [ libmatchbox pkgconfig ];
src = fetchurl {
url = http://matchbox-project.org/sources/matchbox-window-manager/1.2/matchbox-window-manager-1.2.tar.bz2;
sha256 = "1zyfq438b466ygcz78nvsmnsc5bhg4wcfnpxb43kbkwpyx53m8l1";
};
meta = {
description = "X window manager for non-desktop embedded systems";
homepage = http://matchbox-project.org/;
license = "GPLv2+";
};
}