summary refs log blame commit diff
path: root/pkgs/development/libraries/libtsm/default.nix
blob: d959306c971805e014891cbde9ea2a51cb2c9d82 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                                                  

                         

                    
 




                                                                    

    
                                 
 
                                           
 
                    
                                                    
                                                                         
                           
                                                 
                                     

    
{ lib, stdenv, fetchFromGitHub, libxkbcommon, pkg-config, cmake }:

stdenv.mkDerivation rec {
  pname = "libtsm";
  version = "4.0.1";

  src = fetchFromGitHub {
    owner = "Aetf";
    repo = "libtsm";
    rev = "v${version}";
    sha256 = "0mwn91i5h5d518i1s05y7hzv6bc13vzcvxszpfh77473iwg4wprx";
  };

  buildInputs = [ libxkbcommon ];

  nativeBuildInputs = [ cmake pkg-config ];

  meta = with lib; {
    description = "Terminal-emulator State Machine";
    homepage = "http://www.freedesktop.org/wiki/Software/kmscon/libtsm/";
    license = licenses.mit;
    maintainers = with maintainers; [ cstrahan ];
    platforms = with platforms; unix;
  };
}