2015-02-03 01:45:59 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig
|
|
|
|
, libX11, libXext, libXft, libXmu, libXinerama, libXrandr, libXpm
|
|
|
|
, imagemagick, libpng, libjpeg, libexif, libtiff, libungif, libwebp }:
|
2013-08-14 17:57:06 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "windowmaker-${version}";
|
2017-03-19 02:08:14 +00:00
|
|
|
version = "0.95.8";
|
2014-09-13 19:21:56 +01:00
|
|
|
srcName = "WindowMaker-${version}";
|
2013-08-14 17:57:06 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-09-13 19:21:56 +01:00
|
|
|
url = "http://windowmaker.org/pub/source/release/${srcName}.tar.gz";
|
2017-03-19 02:08:14 +00:00
|
|
|
sha256 = "12p8kljqgx5hnic0zvs5mxwp7kg21sb6qjagb2qw8ydvf5amrgwx";
|
2013-08-14 17:57:06 +01:00
|
|
|
};
|
|
|
|
|
2016-11-24 21:48:32 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
|
|
|
buildInputs = [ libX11 libXext libXft libXmu libXinerama libXrandr libXpm
|
2015-02-03 01:45:59 +00:00
|
|
|
imagemagick libpng libjpeg libexif libtiff libungif libwebp ];
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-x"
|
|
|
|
"--enable-modelock"
|
|
|
|
"--enable-randr"
|
|
|
|
"--enable-magick"
|
|
|
|
];
|
2013-08-14 17:57:06 +01:00
|
|
|
|
2014-09-13 19:21:56 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://windowmaker.org/;
|
2013-08-14 17:57:06 +01:00
|
|
|
description = "NeXTSTEP-like window manager";
|
2014-09-13 19:21:56 +01:00
|
|
|
longDescription = ''
|
|
|
|
Window Maker is an X11 window manager originally designed to
|
|
|
|
provide integration support for the GNUstep Desktop
|
|
|
|
Environment. In every way possible, it reproduces the elegant look
|
|
|
|
and feel of the NEXTSTEP user interface. It is fast, feature rich,
|
|
|
|
easy to configure, and easy to use. It is also free software, with
|
|
|
|
contributions being made by programmers from around the world.
|
|
|
|
'';
|
|
|
|
license = licenses.gpl2Plus;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = platforms.linux;
|
2017-03-19 02:08:14 +00:00
|
|
|
maintainers = [ maintainers.AndersonTorres ];
|
2013-08-14 17:57:06 +01:00
|
|
|
};
|
|
|
|
}
|
2015-02-03 01:45:59 +00:00
|
|
|
|
|
|
|
# TODO: investigate support for WEBP (its autodetection is failing)
|