about summary refs log tree commit diff
path: root/pkgs/applications/window-managers/fvwm/default.nix
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2022-07-28 01:29:46 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2022-07-28 01:44:04 -0300
commit439696441e4d1e221fcee3f9289890e5f704f737 (patch)
tree30d48e4dac6b3525fc09e3d46dbaa791ce6636ea /pkgs/applications/window-managers/fvwm/default.nix
parent609ba2e8280c1eea2f28dc87df87ce060888a022 (diff)
fvwm: move-rename to fvwm2
In order to introduce fvwm3, since 2.6.x is now in maintenance mode, with the
new development occurring in a new repository.
Diffstat (limited to 'pkgs/applications/window-managers/fvwm/default.nix')
-rw-r--r--pkgs/applications/window-managers/fvwm/default.nix43
1 files changed, 0 insertions, 43 deletions
diff --git a/pkgs/applications/window-managers/fvwm/default.nix b/pkgs/applications/window-managers/fvwm/default.nix
deleted file mode 100644
index 07c3573fb2a77..0000000000000
--- a/pkgs/applications/window-managers/fvwm/default.nix
+++ /dev/null
@@ -1,43 +0,0 @@
-{ autoreconfHook, enableGestures ? false, lib, stdenv, fetchFromGitHub
-, pkg-config, cairo, fontconfig, freetype, libXft, libXcursor, libXinerama
-, libXpm, libXt, librsvg, libpng, fribidi, perl, libstroke, readline, libxslt }:
-
-stdenv.mkDerivation rec {
-  pname = "fvwm";
-  version = "2.6.9";
-
-  src = fetchFromGitHub {
-    owner = "fvwmorg";
-    repo = pname;
-    rev = version;
-    sha256 = "14jwckhikc9n4h93m00pzjs7xm2j0dcsyzv3q5vbcnknp6p4w5dh";
-  };
-
-  nativeBuildInputs = [ autoreconfHook pkg-config ];
-  buildInputs = [
-    cairo
-    fontconfig
-    freetype
-    libXft
-    libXcursor
-    libXinerama
-    libXpm
-    libXt
-    librsvg
-    libpng
-    fribidi
-    perl
-    readline
-    libxslt
-  ] ++ lib.optional enableGestures libstroke;
-
-  configureFlags = [ "--enable-mandoc" "--disable-htmldoc" ];
-
-  meta = {
-    homepage = "http://fvwm.org";
-    description = "A multiple large virtual desktop window manager";
-    license = lib.licenses.gpl2Plus;
-    platforms = lib.platforms.linux;
-    maintainers = with lib.maintainers; [ edanaher ];
-  };
-}