about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/directvnc/default.nix
blob: b6f221b8ea4c014dc5c1352214dd99511ae938ae (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
26
a @ { libjpeg, pkgconfig, zlib, directfb, xproto, ... } :
let
  s = import ./src-for-default.nix;
  buildInputs = with a; [
    directfb zlib libjpeg pkgconfig xproto
  ];
in
rec {
  src = a.fetchUrlFromSrcInfo s;

  inherit (s) name;
  inherit buildInputs;
  configureFlags = [];

  /* doConfigure should be removed if not needed */
  phaseNames = ["doConfigure" "doMakeInstall"];

  meta = {
    description = "DirectFB VNC client";
    maintainers = [
      a.lib.maintainers.raskin
    ];
    platforms = with a.lib.platforms;
      linux;
  };
}