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

stdenv.mkDerivation rec {
  name = "windowmaker-${version}";
  version = "0.95.4";

  src = fetchurl {
    url = "http://windowmaker.org/pub/source/release/"
        + "WindowMaker-${version}.tar.gz";
    sha256 = "0icffqnmkkjjf412m27wljbf9vxb2ry4aiyi2pqmzw3h0pq9gsib";
  };

  buildInputs = [ pkgconfig libX11 libXft libXmu ];

  meta = {
    homepage = "http://windowmaker.org/";
    description = "NeXTSTEP-like window manager";
    license = stdenv.lib.licenses.gpl2Plus;
  };
}