mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 04:03:56 +00:00
439696441e
In order to introduce fvwm3, since 2.6.x is now in maintenance mode, with the new development occurring in a new repository.
67 lines
1.1 KiB
Nix
67 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, cairo
|
|
, fontconfig
|
|
, freetype
|
|
, fribidi
|
|
, libXcursor
|
|
, libXft
|
|
, libXinerama
|
|
, libXpm
|
|
, libXt
|
|
, libpng
|
|
, librsvg
|
|
, libstroke
|
|
, libxslt
|
|
, perl
|
|
, pkg-config
|
|
, readline
|
|
, enableGestures ? false
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fvwm";
|
|
version = "2.6.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fvwmorg";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-sBVOrrl2WrZ2wWN/r1kDUtR+tPwXgDoSJDaxGeFkXJI=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
|
|
buildInputs = [
|
|
cairo
|
|
fontconfig
|
|
freetype
|
|
fribidi
|
|
libXcursor
|
|
libXft
|
|
libXinerama
|
|
libXpm
|
|
libXt
|
|
libpng
|
|
librsvg
|
|
libxslt
|
|
perl
|
|
readline
|
|
] ++ lib.optional enableGestures libstroke;
|
|
|
|
configureFlags = [
|
|
"--enable-mandoc"
|
|
"--disable-htmldoc"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "http://fvwm.org";
|
|
description = "A multiple large virtual desktop window manager";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ edanaher ];
|
|
};
|
|
}
|