05bb66ce20
And set missing meta.platforms for the packages I've added earlier.
22 lines
527 B
Nix
22 lines
527 B
Nix
{ stdenv, fetchgit, autoconf, automake, pkgconfig, libxml2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "evtest-1.30";
|
|
|
|
preConfigure = "autoreconf -iv";
|
|
|
|
buildInputs = [ autoconf automake pkgconfig libxml2 ];
|
|
|
|
src = fetchgit {
|
|
url = "git://anongit.freedesktop.org/evtest";
|
|
rev = "1a50f2479c4775e047f234a24d95dda82441bfbd";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Simple tool for input event debugging";
|
|
license = "GPLv2";
|
|
platforms = platforms.linux;
|
|
maintainers = maintainers.bjornfor;
|
|
};
|
|
}
|