2021-04-01 13:56:25 +02:00
|
|
|
{ autoreconfHook, enableGestures ? false, lib, stdenv, fetchFromGitHub
|
|
|
|
, pkg-config, cairo, fontconfig, freetype, libXft, libXcursor, libXinerama
|
|
|
|
, libXpm, libXt, librsvg, libpng, fribidi, perl, libstroke, readline, libxslt }:
|
2015-12-03 05:58:00 +01:00
|
|
|
|
2013-03-01 06:48:33 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2017-06-12 22:25:00 +02:00
|
|
|
pname = "fvwm";
|
2019-09-26 17:34:23 +02:00
|
|
|
version = "2.6.9";
|
2013-03-01 06:48:33 +01:00
|
|
|
|
2021-04-01 13:56:25 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "fvwmorg";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
|
|
|
sha256 = "14jwckhikc9n4h93m00pzjs7xm2j0dcsyzv3q5vbcnknp6p4w5dh";
|
2013-03-01 06:48:33 +01:00
|
|
|
};
|
|
|
|
|
2021-04-01 13:56:25 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2013-03-01 06:48:33 +01:00
|
|
|
buildInputs = [
|
2021-04-01 13:56:25 +02:00
|
|
|
cairo
|
|
|
|
fontconfig
|
|
|
|
freetype
|
|
|
|
libXft
|
|
|
|
libXcursor
|
|
|
|
libXinerama
|
|
|
|
libXpm
|
|
|
|
libXt
|
|
|
|
librsvg
|
|
|
|
libpng
|
|
|
|
fribidi
|
|
|
|
perl
|
|
|
|
readline
|
|
|
|
libxslt
|
|
|
|
] ++ lib.optional enableGestures libstroke;
|
|
|
|
|
|
|
|
configureFlags = [ "--enable-mandoc" "--disable-htmldoc" ];
|
2013-03-01 06:48:33 +01:00
|
|
|
|
|
|
|
meta = {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://fvwm.org";
|
2013-03-01 06:48:33 +01:00
|
|
|
description = "A multiple large virtual desktop window manager";
|
2021-01-15 14:21:58 +01:00
|
|
|
license = lib.licenses.gpl2Plus;
|
|
|
|
platforms = lib.platforms.linux;
|
|
|
|
maintainers = with lib.maintainers; [ edanaher ];
|
2013-03-01 06:48:33 +01:00
|
|
|
};
|
|
|
|
}
|