summary refs log tree commit diff
path: root/pkgs/os-specific/linux/directvnc/default.nix
blob: b11a4d6d8f2cc27fd6590222520faa9454a369fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, directfb, zlib, libjpeg, xproto }:

stdenv.mkDerivation rec {
  name = "directvnc-${version}";
  version = "0.7.7.2015-04-16";

  src = fetchFromGitHub {
    owner = "drinkmilk";
    repo = "directvnc";
    rev = "d336f586c5865da68873960092b7b5fbc9f8617a";
    sha256 = "16x7mr7x728qw7nbi6rqhrwsy73zsbpiz8pbgfzfl2aqhfdiz88b";
  };

  nativeBuildInputs = [ autoreconfHook pkgconfig ];

  buildInputs = [ directfb zlib libjpeg xproto ];

  meta = with stdenv.lib; {
    description = "DirectFB VNC client";
    homepage = http://drinkmilk.github.io/directvnc/;
    license = licenses.gpl2;
    maintainers = [ maintainers.raskin ];
    platforms = platforms.linux;
  };
}