My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/os-specific/linux/directvnc/default.nix

23 lines
595 B

{ stdenv, fetchurl, pkgconfig, directfb, zlib, libjpeg, xproto }:
stdenv.mkDerivation rec {
name="directvnc-${version}";
version="0.7.5-test-051207";
src = fetchurl {
url = "http://directvnc-rev.googlecode.com/files/directvnc-${version}.tar.gz";
sha256 = "1is9hca8an1b1n8436wkv7s08ml5lb95f7h9vznx9br597f106w9";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [
directfb zlib libjpeg xproto
];
meta = {
description = "DirectFB VNC client";
maintainers = [ stdenv.lib.maintainers.raskin ];
platforms = with stdenv.lib.platforms; linux;
};
}