nixpkgs/pkgs/applications/window-managers/fvwm/default.nix

34 lines
944 B
Nix
Raw Normal View History

{ gestures ? false
, lib, stdenv, fetchurl, pkg-config
2013-03-01 05:48:33 +00:00
, cairo, fontconfig, freetype, libXft, libXcursor, libXinerama
2015-12-05 16:15:20 +00:00
, libXpm, libXt, librsvg, libpng, fribidi, perl
, libstroke ? null
2013-03-01 05:48:33 +00:00
}:
assert gestures -> libstroke != null;
2013-03-01 05:48:33 +00:00
stdenv.mkDerivation rec {
pname = "fvwm";
version = "2.6.9";
2013-03-01 05:48:33 +00:00
src = fetchurl {
url = "https://github.com/fvwmorg/fvwm/releases/download/${version}/${pname}-${version}.tar.gz";
sha256 = "1bliqcnap7vb3m2rn8wvxyfhbf35h9x34s41fl4301yhrkrlrihv";
2013-03-01 05:48:33 +00:00
};
nativeBuildInputs = [ pkg-config ];
2013-03-01 05:48:33 +00:00
buildInputs = [
cairo fontconfig freetype
2015-12-05 16:15:20 +00:00
libXft libXcursor libXinerama libXpm libXt
2013-03-01 05:48:33 +00:00
librsvg libpng fribidi perl
2021-01-15 13:21:58 +00:00
] ++ lib.optional gestures libstroke;
2013-03-01 05:48:33 +00:00
meta = {
homepage = "http://fvwm.org";
2013-03-01 05:48:33 +00:00
description = "A multiple large virtual desktop window manager";
2021-01-15 13:21:58 +00:00
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ edanaher ];
2013-03-01 05:48:33 +00:00
};
}