nixpkgs/pkgs/development/libraries/libuinputplus/default.nix

24 lines
631 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, pkg-config }:
2019-10-29 13:39:32 +00:00
stdenv.mkDerivation rec {
pname = "libuinputplus";
version = "2019-10-01";
src = fetchFromGitHub {
owner = "YukiWorkshop";
repo = "libuInputPlus";
rev = "962f180b4cc670e1f5cc73c2e4d5d196ae52d630";
sha256 = "0jy5i7bmjad7hw1qcyjl4swqribp2027s9g3609zwj7lj8z5x0bg";
};
nativeBuildInputs = [ cmake pkg-config ];
2019-10-29 13:39:32 +00:00
meta = with lib; {
2019-10-29 13:39:32 +00:00
inherit (src.meta) homepage;
description = "Easy-to-use uinput library in C++";
license = licenses.mit;
maintainers = with maintainers; [ willibutz ];
platforms = with platforms; linux;
};
}