Skip to content

Commit

Permalink
tslib: init at 1.23 (#345302)
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienMalka authored Oct 7, 2024
2 parents bfb6f21 + 622761d commit 291dc4c
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pkgs/by-name/ts/tslib/package.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
})

0 comments on commit 291dc4c

Please sign in to comment.