mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
26 lines
654 B
Nix
26 lines
654 B
Nix
{ 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;
|
|
};
|
|
}
|