2018-12-30 19:40:47 -08:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, directfb, zlib, libjpeg, xorgproto }:
|
2009-11-05 13:10:51 -08:00
|
|
|
|
2019-08-13 14:52:01 -07:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "directvnc";
|
2017-12-10 12:43:39 -08:00
|
|
|
version = "0.7.7.2015-04-16";
|
2009-11-05 13:10:51 -08:00
|
|
|
|
2017-12-10 12:43:39 -08:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "drinkmilk";
|
|
|
|
repo = "directvnc";
|
|
|
|
rev = "d336f586c5865da68873960092b7b5fbc9f8617a";
|
|
|
|
sha256 = "16x7mr7x728qw7nbi6rqhrwsy73zsbpiz8pbgfzfl2aqhfdiz88b";
|
2015-06-15 05:57:44 -07:00
|
|
|
};
|
2015-09-14 21:27:19 -07:00
|
|
|
|
2017-12-10 12:43:39 -08:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
|
2018-12-30 19:40:47 -08:00
|
|
|
buildInputs = [ directfb zlib libjpeg xorgproto ];
|
2017-12-10 12:43:39 -08:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2009-11-05 13:10:51 -08:00
|
|
|
description = "DirectFB VNC client";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://drinkmilk.github.io/directvnc/";
|
2017-12-10 12:43:39 -08:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.raskin ];
|
|
|
|
platforms = platforms.linux;
|
2009-11-05 13:10:51 -08:00
|
|
|
};
|
|
|
|
}
|