forked from mirrors/nixpkgs
fvwm: add gestures option to use libstroke
This commit is contained in:
parent
474d64eecf
commit
523d6846a7
|
@ -1,8 +1,12 @@
|
|||
{ stdenv, fetchurl, pkgconfig
|
||||
{ gestures ? false
|
||||
, stdenv, fetchurl, pkgconfig
|
||||
, cairo, fontconfig, freetype, libXft, libXcursor, libXinerama
|
||||
, libXpm, librsvg, libpng, fribidi, perl
|
||||
, libstroke ? null
|
||||
}:
|
||||
|
||||
assert gestures -> libstroke != null;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "fvwm-2.6.5";
|
||||
|
||||
|
@ -15,7 +19,7 @@ stdenv.mkDerivation rec {
|
|||
pkgconfig cairo fontconfig freetype
|
||||
libXft libXcursor libXinerama libXpm
|
||||
librsvg libpng fribidi perl
|
||||
];
|
||||
] ++ stdenv.lib.optional gestures libstroke;
|
||||
|
||||
meta = {
|
||||
homepage = "http://fvwm.org";
|
||||
|
|
Loading…
Reference in a new issue