mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
1c0c07c2ed
Now Windowmaker is built with support for almost all image formats (except WEBP - its autodetection is failing)
43 lines
1.4 KiB
Nix
43 lines
1.4 KiB
Nix
{ stdenv, fetchurl, pkgconfig
|
|
, libX11, libXext, libXft, libXmu, libXinerama, libXrandr, libXpm
|
|
, imagemagick, libpng, libjpeg, libexif, libtiff, libungif, libwebp }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "windowmaker-${version}";
|
|
version = "0.95.6";
|
|
srcName = "WindowMaker-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://windowmaker.org/pub/source/release/${srcName}.tar.gz";
|
|
sha256 = "1i3dw1yagsa3rs9x2na2ynqlgmbahayws0kz4vl00fla6550nns3";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig
|
|
libX11 libXext libXft libXmu libXinerama libXrandr libXpm
|
|
imagemagick libpng libjpeg libexif libtiff libungif libwebp ];
|
|
|
|
configureFlags = [
|
|
"--with-x"
|
|
"--enable-modelock"
|
|
"--enable-randr"
|
|
"--enable-magick"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://windowmaker.org/;
|
|
description = "NeXTSTEP-like window manager";
|
|
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;
|
|
maintainers = [ maintainers.AndersonTorres ];
|
|
};
|
|
}
|
|
|
|
# TODO: investigate support for WEBP (its autodetection is failing)
|