windowmaker: New package in version 0.95.4.

Packaged this for @devhell sometime ago and adding it here so maybe it's
useful for other people using Nix(OS).

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2013-08-14 18:57:06 +02:00
parent f67392cbca
commit 23a53b8dfa
No known key found for this signature in database
GPG key ID: D0EBD0EC8C2DC961
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,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;
};
}

View file

@ -8635,6 +8635,8 @@ let
};
};
windowmaker = callPackage ../applications/window-managers/windowmaker { };
winswitch = callPackage ../tools/X11/winswitch { };
wings = callPackage ../applications/graphics/wings {