keyfuzz: init at 0.2.

This commit is contained in:
Mathieu Boespflug
2016-03-05 19:41:33 +01:00
parent 4e8853ca8d
commit 73878e1c10
3 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "keyfuzz-${version}";
version = "0.2";
meta = with stdenv.lib; {
description = "Manipulate the scancode/keycode translation tables of keyboard drivers.";
homepace = http://0pointer.de/lennart/projects/keyfuzz/;
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ mboes ];
};
src = fetchurl {
url = "http://0pointer.de/lennart/projects/keyfuzz/keyfuzz-0.2.tar.gz";
sha256 = "0xv9ymivp8fnyc5xcyh1vamxnx90bzw66wlld813fvm6q2gsiknk";
};
configureFlags = "--without-initdir --disable-lynx";
}