linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / libtsm / default.nix
blobd959306c971805e014891cbde9ea2a51cb2c9d82
1 { lib, stdenv, fetchFromGitHub, libxkbcommon, pkg-config, cmake }:
3 stdenv.mkDerivation rec {
4   pname = "libtsm";
5   version = "4.0.1";
7   src = fetchFromGitHub {
8     owner = "Aetf";
9     repo = "libtsm";
10     rev = "v${version}";
11     sha256 = "0mwn91i5h5d518i1s05y7hzv6bc13vzcvxszpfh77473iwg4wprx";
12   };
14   buildInputs = [ libxkbcommon ];
16   nativeBuildInputs = [ cmake pkg-config ];
18   meta = with lib; {
19     description = "Terminal-emulator State Machine";
20     homepage = "http://www.freedesktop.org/wiki/Software/kmscon/libtsm/";
21     license = licenses.mit;
22     maintainers = with maintainers; [ cstrahan ];
23     platforms = with platforms; unix;
24   };