fvwm3: init at 1.0.4
This commit is contained in:
parent
2617a00699
commit
cd43f8b8bd
88
pkgs/applications/window-managers/fvwm/3.nix
Normal file
88
pkgs/applications/window-managers/fvwm/3.nix
Normal file
@ -0,0 +1,88 @@
|
|||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, asciidoctor
|
||||||
|
, autoreconfHook
|
||||||
|
, cairo
|
||||||
|
, fontconfig
|
||||||
|
, freetype
|
||||||
|
, fribidi
|
||||||
|
, imlib
|
||||||
|
, libSM
|
||||||
|
, libX11
|
||||||
|
, libXcursor
|
||||||
|
, libXft
|
||||||
|
, libXi
|
||||||
|
, libXinerama
|
||||||
|
, libXpm
|
||||||
|
, libXrandr
|
||||||
|
, libXt
|
||||||
|
, libevent
|
||||||
|
, libintl
|
||||||
|
, libpng
|
||||||
|
, librsvg
|
||||||
|
, libstroke
|
||||||
|
, libxslt
|
||||||
|
, perl
|
||||||
|
, pkg-config
|
||||||
|
, python3
|
||||||
|
, readline
|
||||||
|
, sharutils
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
|
pname = "fvwm3";
|
||||||
|
version = "1.0.4";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "fvwmorg";
|
||||||
|
repo = "fvwm3";
|
||||||
|
rev = finalAttrs.version;
|
||||||
|
hash = "sha256-ByMSX4nwXkp+ly39C2+cYy3e9B0vnGcJlyIiS7V6zoI=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
autoreconfHook
|
||||||
|
asciidoctor
|
||||||
|
pkg-config
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
cairo
|
||||||
|
fontconfig
|
||||||
|
freetype
|
||||||
|
fribidi
|
||||||
|
imlib
|
||||||
|
libSM
|
||||||
|
libX11
|
||||||
|
libXcursor
|
||||||
|
libXft
|
||||||
|
libXi
|
||||||
|
libXinerama
|
||||||
|
libXpm
|
||||||
|
libXrandr
|
||||||
|
libXt
|
||||||
|
libevent
|
||||||
|
libintl
|
||||||
|
libpng
|
||||||
|
librsvg
|
||||||
|
libstroke
|
||||||
|
libxslt
|
||||||
|
perl
|
||||||
|
python3
|
||||||
|
readline
|
||||||
|
sharutils
|
||||||
|
];
|
||||||
|
|
||||||
|
configureFlags = [
|
||||||
|
"--enable-mandoc"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "http://fvwm.org";
|
||||||
|
description = "A multiple large virtual desktop window manager - Version 3";
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
maintainers = with maintainers; [ AndersonTorres ];
|
||||||
|
inherit (libX11.meta) platforms;
|
||||||
|
};
|
||||||
|
})
|
@ -26933,6 +26933,7 @@ with pkgs;
|
|||||||
|
|
||||||
fvwm = fvwm2;
|
fvwm = fvwm2;
|
||||||
fvwm2 = callPackage ../applications/window-managers/fvwm/2.6.nix { };
|
fvwm2 = callPackage ../applications/window-managers/fvwm/2.6.nix { };
|
||||||
|
fvwm3 = callPackage ../applications/window-managers/fvwm/3.nix { };
|
||||||
|
|
||||||
ganttproject-bin = callPackage ../applications/misc/ganttproject-bin { };
|
ganttproject-bin = callPackage ../applications/misc/ganttproject-bin { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user