summary refs log tree commit diff
path: root/pkgs/applications/window-managers/matchbox/default.nix
blob: dc624f449865f7c83d9e03f3638cff9c0fc38724 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, libmatchbox, pkgconfig}:

stdenv.mkDerivation rec {
  name = "matchbox-${version}";
  version = "1.2";

  buildInputs = [ libmatchbox pkgconfig ];

  src = fetchurl {
    url = "http://downloads.yoctoproject.org/releases/matchbox/matchbox-window-manager/${version}/matchbox-window-manager-${version}.tar.bz2";
    sha256 = "1zyfq438b466ygcz78nvsmnsc5bhg4wcfnpxb43kbkwpyx53m8l1";
  };

  meta = {
    description = "X window manager for non-desktop embedded systems";
    homepage = http://matchbox-project.org/;
    license = stdenv.lib.licenses.gpl2Plus;
    platforms = stdenv.lib.platforms.linux;
  };
}