forked from mirrors/nixpkgs
23a53b8dfa
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>
21 lines
541 B
Nix
21 lines
541 B
Nix
{ 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;
|
|
};
|
|
}
|