Added Xvnc build to tightvnc

svn path=/nixpkgs/trunk/; revision=9404
This commit is contained in:
Michael Raskin 2007-10-04 18:49:04 +00:00
parent a6f18fb565
commit 3ea21c3fdc
2 changed files with 8 additions and 0 deletions

View File

@ -4,6 +4,13 @@ buildPhase=buildPhase
buildPhase() {
xmkmf
make World
cd Xvnc
sed -e 's@.* CppCmd .*@#define CppCmd '$gcc'/bin/cpp@' -i config/cf/linux.cf
sed -e 's@.* CppCmd .*@#define CppCmd '$gcc'/bin/cpp@' -i config/cf/Imake.tmpl
./configure
make
cd ..
}
installPhase=installPhase

View File

@ -3,6 +3,7 @@
stdenv.mkDerivation {
name = "tightvnc-1.3.9";
builder = ./builder.sh;
gcc=stdenv.gcc.gcc;
src = fetchurl {
url = mirror://sourceforge/vnc-tight/tightvnc-1.3.9_unixsrc.tar.bz2;
sha256 = "0nij6kyzwxf7nblwd6riwqhzh8b8xwdffpj379zi5y9mcmiwmalr";