nixpkgs/pkgs/development/libraries/libevdevplus/default.nix
2021-01-21 19:11:02 -08:00

24 lines
644 B
Nix

{ lib, stdenv, fetchFromGitHub, cmake, pkg-config }:
stdenv.mkDerivation rec {
pname = "libevdevplus";
version = "unstable-2019-10-01";
src = fetchFromGitHub {
owner = "YukiWorkshop";
repo = "libevdevPlus";
rev = "e863df2ade43e2c7d7748cc33ca27fb3eed325ca";
sha256 = "18z6pn4j7fhmwwh0q22ip5nn7sc1hfgwvkdzqhkja60i8cw2cvvj";
};
nativeBuildInputs = [ cmake pkg-config ];
meta = with lib; {
inherit (src.meta) homepage;
description = "Easy-to-use event device library in C++";
license = licenses.mit;
maintainers = with maintainers; [ willibutz ];
platforms = with platforms; linux;
};
}