at 18.03-beta 25 lines 724 B view raw
1{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, directfb, zlib, libjpeg, xproto }: 2 3stdenv.mkDerivation rec { 4 name = "directvnc-${version}"; 5 version = "0.7.7.2015-04-16"; 6 7 src = fetchFromGitHub { 8 owner = "drinkmilk"; 9 repo = "directvnc"; 10 rev = "d336f586c5865da68873960092b7b5fbc9f8617a"; 11 sha256 = "16x7mr7x728qw7nbi6rqhrwsy73zsbpiz8pbgfzfl2aqhfdiz88b"; 12 }; 13 14 nativeBuildInputs = [ autoreconfHook pkgconfig ]; 15 16 buildInputs = [ directfb zlib libjpeg xproto ]; 17 18 meta = with stdenv.lib; { 19 description = "DirectFB VNC client"; 20 homepage = http://drinkmilk.github.io/directvnc/; 21 license = licenses.gpl2; 22 maintainers = [ maintainers.raskin ]; 23 platforms = platforms.linux; 24 }; 25}