summary refs log tree commit diff
path: root/pkgs/applications/window-managers
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2022-07-28 01:31:22 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2022-07-28 22:28:40 -0300
commitcd43f8b8bd9217f2effa4f475ade3809f26e76d4 (patch)
tree72da2dcb3e0ef754f06c688dd9c5834c6bd2db8d /pkgs/applications/window-managers
parent2617a006997e27275b85f7b6bb3e0f40a9305b23 (diff)
downloadnixpkgs-cd43f8b8bd9217f2effa4f475ade3809f26e76d4.tar
nixpkgs-cd43f8b8bd9217f2effa4f475ade3809f26e76d4.tar.gz
nixpkgs-cd43f8b8bd9217f2effa4f475ade3809f26e76d4.tar.bz2
nixpkgs-cd43f8b8bd9217f2effa4f475ade3809f26e76d4.tar.lz
nixpkgs-cd43f8b8bd9217f2effa4f475ade3809f26e76d4.tar.xz
nixpkgs-cd43f8b8bd9217f2effa4f475ade3809f26e76d4.tar.zst
nixpkgs-cd43f8b8bd9217f2effa4f475ade3809f26e76d4.zip
fvwm3: init at 1.0.4
Diffstat (limited to 'pkgs/applications/window-managers')
-rw-r--r--pkgs/applications/window-managers/fvwm/3.nix88
1 files changed, 88 insertions, 0 deletions
diff --git a/pkgs/applications/window-managers/fvwm/3.nix b/pkgs/applications/window-managers/fvwm/3.nix
new file mode 100644
index 00000000000..f3862f9ac0d
--- /dev/null
+++ b/pkgs/applications/window-managers/fvwm/3.nix
@@ -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;
+  };
+})