tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
fvwm: add gestures option to use libstroke
Evan Danaher
10 years ago
523d6846
474d64ee
+6
-2
1 changed file
expand all
collapse all
unified
split
pkgs
applications
window-managers
fvwm
default.nix
+6
-2
pkgs/applications/window-managers/fvwm/default.nix
···
1
1
-
{ stdenv, fetchurl, pkgconfig
1
1
+
{ gestures ? false
2
2
+
, stdenv, fetchurl, pkgconfig
2
3
, cairo, fontconfig, freetype, libXft, libXcursor, libXinerama
3
4
, libXpm, librsvg, libpng, fribidi, perl
5
5
+
, libstroke ? null
4
6
}:
7
7
+
8
8
+
assert gestures -> libstroke != null;
5
9
6
10
stdenv.mkDerivation rec {
7
11
name = "fvwm-2.6.5";
···
15
19
pkgconfig cairo fontconfig freetype
16
20
libXft libXcursor libXinerama libXpm
17
21
librsvg libpng fribidi perl
18
18
-
];
22
22
+
] ++ stdenv.lib.optional gestures libstroke;
19
23
20
24
meta = {
21
25
homepage = "http://fvwm.org";