summary refs log tree commit diff
path: root/pkgs/development/libraries/mtdev
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2014-10-17 14:24:05 -0700
committerWilliam A. Kennington III <william@wkennington.com>2014-10-17 14:26:44 -0700
commit8cd575c5aa71cb5cb172b9fe8703af3952df122b (patch)
tree773ba3c229b6b5f5ca63bca96680429b7dfc79df /pkgs/development/libraries/mtdev
parent8ad2a13bdf8712859b462e22903fda19f5a77440 (diff)
downloadnixpkgs-8cd575c5aa71cb5cb172b9fe8703af3952df122b.tar
nixpkgs-8cd575c5aa71cb5cb172b9fe8703af3952df122b.tar.gz
nixpkgs-8cd575c5aa71cb5cb172b9fe8703af3952df122b.tar.bz2
nixpkgs-8cd575c5aa71cb5cb172b9fe8703af3952df122b.tar.lz
nixpkgs-8cd575c5aa71cb5cb172b9fe8703af3952df122b.tar.xz
nixpkgs-8cd575c5aa71cb5cb172b9fe8703af3952df122b.tar.zst
nixpkgs-8cd575c5aa71cb5cb172b9fe8703af3952df122b.zip
mtdev: 1.1.2 -> 1.1.5
Diffstat (limited to 'pkgs/development/libraries/mtdev')
-rw-r--r--pkgs/development/libraries/mtdev/default.nix13
1 files changed, 6 insertions, 7 deletions
diff --git a/pkgs/development/libraries/mtdev/default.nix b/pkgs/development/libraries/mtdev/default.nix
index 2363f33de07..51a66b4b92c 100644
--- a/pkgs/development/libraries/mtdev/default.nix
+++ b/pkgs/development/libraries/mtdev/default.nix
@@ -1,18 +1,16 @@
 { stdenv, fetchurl }:
 
 stdenv.mkDerivation rec {
-  name = "mtdev-1.1.2";
+  name = "mtdev-1.1.5";
 
   src = fetchurl {
     url = "http://bitmath.org/code/mtdev/${name}.tar.bz2";
-    sha256 = "0c2sfxxymf20ylvblgmdmybqs0cydmphg9fq6fnp6flbl0fd33b9";
+    sha256 = "0zxs7shzgbalkvlaiibi25bd902rbmkv9n1lww6q8j3ri9qdaxv6";
   };
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = http://bitmath.org/code/mtdev/;
-
     description = "Multitouch Protocol Translation Library";
-
     longDescription = ''
       The mtdev is a stand-alone library which transforms all variants of
       kernel MT events to the slotted type B protocol. The events put into
@@ -20,7 +18,8 @@ stdenv.mkDerivation rec {
       tracking, type A with contact tracking, or type B with contact tracking.
       See the kernel documentation for further details. 
     '';
-
-    license = stdenv.lib.licenses.mit;
+    license = licenses.mit;
+    platforms = platforms.unix;
+    maintainers = with maintainers; [ wkennington ];
   };
 }