mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
Adding GTK-VNC
svn path=/nixpkgs/trunk/; revision=25547
This commit is contained in:
parent
18d0193c18
commit
259e59148e
62
pkgs/tools/admin/gtk-vnc/default.nix
Normal file
62
pkgs/tools/admin/gtk-vnc/default.nix
Normal file
@ -0,0 +1,62 @@
|
||||
x@{builderDefsPackage
|
||||
, python, gtk, pygtk, gnutls, cairo, libtool, glib, pkgconfig, libtasn1
|
||||
, libffi, cyrus_sasl, intltool, perl, perlPackages, firefox36Pkgs
|
||||
, kbproto, libX11, libXext, xextproto, pygobject
|
||||
, ...}:
|
||||
builderDefsPackage
|
||||
(a :
|
||||
let
|
||||
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
|
||||
["perlPackages" "firefox36Pkgs" "gtkLibs"];
|
||||
|
||||
buildInputs = (map (n: builtins.getAttr n x)
|
||||
(builtins.attrNames (builtins.removeAttrs x helperArgNames)))
|
||||
++ [perlPackages.TextCSV firefox36Pkgs.xulrunner ];
|
||||
sourceInfo = rec {
|
||||
baseName="gtk-vnc";
|
||||
majorVersion="0.4";
|
||||
minorVersion="2";
|
||||
version="${majorVersion}.${minorVersion}";
|
||||
name="${baseName}-${version}";
|
||||
url="mirror://gnome/sources/${baseName}/${majorVersion}/${name}.tar.gz";
|
||||
hash="1fkhzwpw50rnwp51lsbny16p2ckzx5rkcaiaqvkd90vwnm2cccls";
|
||||
};
|
||||
in
|
||||
rec {
|
||||
src = a.fetchurl {
|
||||
url = sourceInfo.url;
|
||||
sha256 = sourceInfo.hash;
|
||||
};
|
||||
|
||||
inherit (sourceInfo) name version;
|
||||
inherit buildInputs;
|
||||
|
||||
configureFlags = [
|
||||
"--with-python"
|
||||
"--with-examples"
|
||||
];
|
||||
|
||||
/* doConfigure should be removed if not needed */
|
||||
phaseNames = ["fixMakefiles" "doConfigure" "doMakeInstall"];
|
||||
|
||||
fixMakefiles = a.fullDepEntry ''
|
||||
find . -name 'Makefile*' -exec sed -i '{}' -e 's@=codegendir pygtk-2.0@=codegendir pygobject-2.0@' ';'
|
||||
'' ["minInit" "doUnpack"];
|
||||
|
||||
meta = {
|
||||
description = "A GTK VNC widget";
|
||||
maintainers = with a.lib.maintainers;
|
||||
[
|
||||
raskin
|
||||
];
|
||||
platforms = with a.lib.platforms;
|
||||
linux;
|
||||
license = a.lib.licenses.lgpl21;
|
||||
};
|
||||
passthru = {
|
||||
updateInfo = {
|
||||
downloadPage = "http://ftp.gnome.org/pub/GNOME/sources/gtk-vnc";
|
||||
};
|
||||
};
|
||||
}) x
|
||||
|
@ -745,6 +745,8 @@ let
|
||||
gt5 = callPackage ../tools/system/gt5 { };
|
||||
|
||||
gtkgnutella = callPackage ../tools/networking/p2p/gtk-gnutella { };
|
||||
|
||||
gtkvnc = callPackage ../tools/admin/gtk-vnc {};
|
||||
|
||||
gupnp = callPackage ../development/libraries/gupnp {
|
||||
inherit (gnome) libsoup;
|
||||
@ -2875,6 +2877,8 @@ let
|
||||
|
||||
directfb = callPackage ../development/libraries/directfb { };
|
||||
|
||||
dssi = callPackage ../development/libraries/dssi {};
|
||||
|
||||
dragonegg = callPackage ../development/compilers/llvm/dragonegg.nix {
|
||||
stdenv = overrideGCC stdenv gcc45;
|
||||
};
|
||||
@ -3432,6 +3436,8 @@ let
|
||||
|
||||
liblo = callPackage ../development/libraries/liblo { };
|
||||
|
||||
liblrdf = callPackage ../development/libraries/liblrdf {};
|
||||
|
||||
libev = builderDefsPackage ../development/libraries/libev {
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user