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:
parent
f67392cbca
commit
23a53b8dfa
20
pkgs/applications/window-managers/windowmaker/default.nix
Normal file
20
pkgs/applications/window-managers/windowmaker/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -8635,6 +8635,8 @@ let
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
windowmaker = callPackage ../applications/window-managers/windowmaker { };
|
||||||
|
|
||||||
winswitch = callPackage ../tools/X11/winswitch { };
|
winswitch = callPackage ../tools/X11/winswitch { };
|
||||||
|
|
||||||
wings = callPackage ../applications/graphics/wings {
|
wings = callPackage ../applications/graphics/wings {
|
||||||
|
Loading…
Reference in New Issue
Block a user