tslib: init at 1.23

This commit is contained in:
Sh0g0-1758 2024-10-06 00:27:37 +05:30
parent c761bb37cf
commit 622761d776
No known key found for this signature in database
GPG Key ID: ED70DAAA4D103EC7

View File

@ -0,0 +1,29 @@
{
lib,
stdenv,
fetchFromGitHub,
cmake,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "tslib";
version = "1.23";
hash = "sha256-2YJDADh/WCksAEIjngAdji98YGmwjpvxSBZkxAwFc7k=";
src = fetchFromGitHub {
owner = "libts";
repo = finalAttrs.pname;
rev = finalAttrs.version;
sha256 = finalAttrs.hash;
};
nativeBuildInputs = [ cmake ];
meta = {
description = "Touchscreen access library";
homepage = "http://www.tslib.org/";
license = lib.licenses.lgpl21;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ shogo ];
};
})