xf86-input-multitouch seems to be abandoned, update it with the mtrack fork
svn path=/nixpkgs/trunk/; revision=33283
This commit is contained in:
parent
a74565238a
commit
6fe5413cb7
@ -1,11 +1,11 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "mtdev-1.1.0";
|
||||
stdenv.mkDerivation rec {
|
||||
name = "mtdev-1.1.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://bitmath.org/code/mtdev/mtdev-1.1.0.tar.bz2";
|
||||
sha256 = "0l5a6vr5r5yx3g86nvj699xlpd5bg5rfzpgjvn46flq4x9r9zpac";
|
||||
url = "http://bitmath.org/code/mtdev/${name}.tar.bz2";
|
||||
sha256 = "0c2sfxxymf20ylvblgmdmybqs0cydmphg9fq6fnp6flbl0fd33b9";
|
||||
};
|
||||
|
||||
meta = {
|
||||
|
37
pkgs/os-specific/linux/xf86-input-mtrack/default.nix
Normal file
37
pkgs/os-specific/linux/xf86-input-mtrack/default.nix
Normal file
@ -0,0 +1,37 @@
|
||||
{
|
||||
stdenv
|
||||
, fetchurl
|
||||
, autoconf
|
||||
, automake
|
||||
, utilmacros
|
||||
, pkgconfig
|
||||
, libtool
|
||||
, mtdev
|
||||
, xorgserver
|
||||
, xproto
|
||||
, inputproto
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "xf86-input-mtrack-0.2.0";
|
||||
|
||||
preConfigure = "autoreconf -vfi";
|
||||
|
||||
buildInputs = [
|
||||
autoconf
|
||||
automake
|
||||
utilmacros
|
||||
pkgconfig
|
||||
libtool
|
||||
mtdev
|
||||
xorgserver
|
||||
xproto
|
||||
inputproto
|
||||
];
|
||||
|
||||
src = fetchurl {
|
||||
name = "xf86-input-mtrack.tar.gz";
|
||||
url = "https://github.com/BlueDragonX/xf86-input-mtrack/tarball/v0.2.0";
|
||||
sha256 = "1zvd68dxpjn44ys7ysi3yc95xdjw1rz0s3xwlh3fzpw1ib3wrr3x";
|
||||
};
|
||||
}
|
@ -6071,6 +6071,10 @@ let
|
||||
|
||||
wpa_supplicant_gui = callPackage ../os-specific/linux/wpa_supplicant/gui.nix { };
|
||||
|
||||
xf86_input_mtrack = callPackage ../os-specific/linux/xf86-input-mtrack {
|
||||
inherit (xorg) utilmacros xproto inputproto xorgserver;
|
||||
};
|
||||
|
||||
xf86_input_multitouch =
|
||||
callPackage ../os-specific/linux/xf86-input-multitouch { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user