2015-12-03 05:58:00 +01:00
|
|
|
{ gestures ? false
|
|
|
|
, stdenv, fetchurl, pkgconfig
|
2013-03-01 06:48:33 +01:00
|
|
|
, cairo, fontconfig, freetype, libXft, libXcursor, libXinerama
|
2015-12-05 17:15:20 +01:00
|
|
|
, libXpm, libXt, librsvg, libpng, fribidi, perl
|
2015-12-03 05:58:00 +01:00
|
|
|
, libstroke ? null
|
2013-03-01 06:48:33 +01:00
|
|
|
}:
|
|
|
|
|
2015-12-03 05:58:00 +01:00
|
|
|
assert gestures -> libstroke != null;
|
|
|
|
|
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
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "https://github.com/fvwmorg/fvwm/releases/download/${version}/${pname}-${version}.tar.gz";
|
2019-09-26 17:34:23 +02:00
|
|
|
sha256 = "1bliqcnap7vb3m2rn8wvxyfhbf35h9x34s41fl4301yhrkrlrihv";
|
2013-03-01 06:48:33 +01:00
|
|
|
};
|
|
|
|
|
2017-09-14 21:24:37 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2013-03-01 06:48:33 +01:00
|
|
|
buildInputs = [
|
2017-09-14 21:24:37 +02:00
|
|
|
cairo fontconfig freetype
|
2015-12-05 17:15:20 +01:00
|
|
|
libXft libXcursor libXinerama libXpm libXt
|
2013-03-01 06:48:33 +01:00
|
|
|
librsvg libpng fribidi perl
|
2015-12-03 05:58:00 +01:00
|
|
|
] ++ stdenv.lib.optional gestures libstroke;
|
2013-03-01 06:48:33 +01:00
|
|
|
|
|
|
|
meta = {
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = http://fvwm.org;
|
2013-03-01 06:48:33 +01:00
|
|
|
description = "A multiple large virtual desktop window manager";
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2017-04-06 15:05:32 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ edanaher ];
|
2013-03-01 06:48:33 +01:00
|
|
|
};
|
|
|
|
}
|