summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2020-01-18 19:57:10 -0500
committerworldofpeace <worldofpeace@protonmail.ch>2020-01-20 16:09:29 -0500
commitafe27e517b33110b84cc6d1562fa299fc204dad1 (patch)
tree8c7334d5b0a9469eb3f22cd8a20ad7e88b84e24e /pkgs/os-specific
parent5f594c6a7c5e66f6ff5666f3525bf259b2e444e6 (diff)
downloadnixpkgs-afe27e517b33110b84cc6d1562fa299fc204dad1.tar
nixpkgs-afe27e517b33110b84cc6d1562fa299fc204dad1.tar.gz
nixpkgs-afe27e517b33110b84cc6d1562fa299fc204dad1.tar.bz2
nixpkgs-afe27e517b33110b84cc6d1562fa299fc204dad1.tar.lz
nixpkgs-afe27e517b33110b84cc6d1562fa299fc204dad1.tar.xz
nixpkgs-afe27e517b33110b84cc6d1562fa299fc204dad1.tar.zst
nixpkgs-afe27e517b33110b84cc6d1562fa299fc204dad1.zip
nixos/multitouch: remove
On numerous occasions I have seen users mistake this
module as libinput because it being called "multitouch"
and them being unaware that the actually module they want
is libinput. They then run into several decrepit bugs due
to the completely out-of-date nature of the underlying package.
The underlying package hasn't been changed to an up-to-date
fork in a period of 8 years. I don't consider this to be production quality.
However, I'm not opposed for the module being readded to NixOS
with new packaging, and a better name.
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/xf86-input-mtrack/default.nix42
1 files changed, 0 insertions, 42 deletions
diff --git a/pkgs/os-specific/linux/xf86-input-mtrack/default.nix b/pkgs/os-specific/linux/xf86-input-mtrack/default.nix
deleted file mode 100644
index 2897e9200fd..00000000000
--- a/pkgs/os-specific/linux/xf86-input-mtrack/default.nix
+++ /dev/null
@@ -1,42 +0,0 @@
-{
-  stdenv
-, fetchurl
-, utilmacros
-, pkgconfig
-, mtdev
-, xorgserver
-, xorgproto
-, pixman
-, autoreconfHook
-}:
-
-stdenv.mkDerivation {
-  name = "xf86-input-mtrack-0.3.0";
-
-  buildInputs = [
-    utilmacros
-    pkgconfig
-    mtdev
-    xorgserver
-    xorgproto
-    pixman
-    autoreconfHook
-  ];
-
-  CFLAGS = "-I${pixman}/include/pixman-1";
-
-  src = fetchurl {
-    name = "xf86-input-mtrack.tar.gz";
-    url = "https://github.com/BlueDragonX/xf86-input-mtrack/tarball/v0.3.0";
-    sha256 = "174rdw7gv0wsnjgmwpx4pgjn1zfbylflda4k2dzff6phzxj9yl6v";
-  };
-
-  meta = {
-    homepage = https://github.com/BlueDragonX/xf86-input-mtrack;
-
-    description = "An Xorg driver for multitouch trackpads";
-
-    license = stdenv.lib.licenses.gpl2;
-    platforms = stdenv.lib.platforms.linux;
-  };
-}