summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2020-01-18 19:59:25 -0500
committerworldofpeace <worldofpeace@protonmail.ch>2020-01-20 16:10:01 -0500
commitb7b4e443fcb3b5cf69ba832e529b1bbc7e574afd (patch)
treeff6981449e4a04b80be69ef9dc462d55820b6192 /pkgs/os-specific
parentafe27e517b33110b84cc6d1562fa299fc204dad1 (diff)
downloadnixpkgs-b7b4e443fcb3b5cf69ba832e529b1bbc7e574afd.tar
nixpkgs-b7b4e443fcb3b5cf69ba832e529b1bbc7e574afd.tar.gz
nixpkgs-b7b4e443fcb3b5cf69ba832e529b1bbc7e574afd.tar.bz2
nixpkgs-b7b4e443fcb3b5cf69ba832e529b1bbc7e574afd.tar.lz
nixpkgs-b7b4e443fcb3b5cf69ba832e529b1bbc7e574afd.tar.xz
nixpkgs-b7b4e443fcb3b5cf69ba832e529b1bbc7e574afd.tar.zst
nixpkgs-b7b4e443fcb3b5cf69ba832e529b1bbc7e574afd.zip
xf86_input_multitouch: remove
The source repo doesn't exist and it hasn't been touched in 8 years.
There is also no module to interface with it in NixOS.
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/xf86-input-multitouch/default.nix48
1 files changed, 0 insertions, 48 deletions
diff --git a/pkgs/os-specific/linux/xf86-input-multitouch/default.nix b/pkgs/os-specific/linux/xf86-input-multitouch/default.nix
deleted file mode 100644
index 71242348f68..00000000000
--- a/pkgs/os-specific/linux/xf86-input-multitouch/default.nix
+++ /dev/null
@@ -1,48 +0,0 @@
-{ stdenv
-, fetchgit
-, mtdev
-, pixman
-, xorg
-, libpciaccess
-}:
-
-stdenv.mkDerivation {
-  name = "xf86-input-multitouch-20110312";
-
-  src = fetchgit {
-    url = http://bitmath.org/git/multitouch.git;
-    rev = "4d87c041f6a232aa30528d70d4b9946d1824b4ed";
-    sha256 = "1jh52d3lkmchn5xdbz4qn50d30nild1zxvfbvwwl2rbmphs5ww6y";
-  };
-
-  # Configuration from http://bitmath.org/code/multitouch/
-  confFile = ''
-    Section "InputClass"
-        MatchIsTouchpad "true"
-        Identifier "Multitouch Touchpad"
-        Driver "multitouch"
-    EndSection
-  '';
-
-  buildInputs = with xorg; [
-    mtdev xorgproto libpciaccess libxcb
-  ];
-
-  buildPhase = ''
-    make INCLUDE="$NIX_CFLAGS_COMPILE -I${xorg.xorgserver.dev}/include/xorg -I${pixman}/include/pixman-1 -Iinclude"
-  '';
-
-  installPhase = ''
-    make DESTDIR="$out" LIBDIR="lib" install
-    mkdir -p $out/include/xorg
-    echo -n "$confFile" > $out/include/xorg/10-multitouch.conf
-  '';
-
-  meta = {
-    homepage = http://bitmath.org/code/multitouch/;
-
-    description = "Brings multitouch gestures to the Linux desktop";
-
-    license = stdenv.lib.licenses.gpl2;
-  };
-}