forked from mirrors/nixpkgs
Added some telepathy+tapioca stuff.
svn path=/nixpkgs/trunk/; revision=10360
This commit is contained in:
parent
074ec5902a
commit
3d2853cc3f
16
pkgs/development/libraries/tapioca-qt/default.nix
Normal file
16
pkgs/development/libraries/tapioca-qt/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
args: with args;
|
||||
let rev = "2031"; in
|
||||
stdenv.mkDerivation {
|
||||
name = "tapioca-qt-r${rev}";
|
||||
src = fetchsvn {
|
||||
url = "https://tapioca-voip.svn.sourceforge.net/svnroot/tapioca-voip/trunk/tapioca-qt";
|
||||
inherit rev;
|
||||
sha256 = "0r2qzlm56yizdi64xga6v2sdhdcgl3cvlsd7g9ynh95813nky88z";
|
||||
};
|
||||
|
||||
buildInputs = [cmake];
|
||||
propagatedBuildInputs = [telepathy_qt stdenv.gcc.libc];
|
||||
meta = {
|
||||
description = "Qt Tapioca binding library";
|
||||
};
|
||||
}
|
17
pkgs/development/libraries/telepathy-gabble/default.nix
Normal file
17
pkgs/development/libraries/telepathy-gabble/default.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
args: with args;
|
||||
stdenv.mkDerivation rec {
|
||||
name = "telepathy-gabble-0.7.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "${meta.homepage}/releases/telepathy-gabble/${name}.tar.gz";
|
||||
sha256 = "0r1j475a5s2a4f10hybmavf4kf6nrnjnv091dpic5nl2asdilb7i";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [telepathy_glib loudmouth];
|
||||
buildInputs = [pkgconfig libxslt];
|
||||
configureFlags = "--enable-shared --disable-static";
|
||||
|
||||
meta = {
|
||||
homepage = http://telepathy.freedesktop.org;
|
||||
};
|
||||
}
|
17
pkgs/development/libraries/telepathy-glib/default.nix
Normal file
17
pkgs/development/libraries/telepathy-glib/default.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
args: with args;
|
||||
stdenv.mkDerivation rec {
|
||||
name = "telepathy-glib-0.7.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "${meta.homepage}/releases/telepathy-glib/${name}.tar.gz";
|
||||
sha256 = "0hf1jrgisr7skrji7djh66q0ic351vlsm65xqy982p5d0axzxkz5";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [dbus_glib glib python];
|
||||
buildInputs = [pkgconfig libxslt];
|
||||
configureFlags = "--enable-shared --disable-static";
|
||||
|
||||
meta = {
|
||||
homepage = http://telepathy.freedesktop.org;
|
||||
};
|
||||
}
|
16
pkgs/development/libraries/telepathy-qt/default.nix
Normal file
16
pkgs/development/libraries/telepathy-qt/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
args: with args;
|
||||
let rev = "2031"; in
|
||||
stdenv.mkDerivation {
|
||||
name = "telepathy-qt-r${rev}";
|
||||
src = fetchsvn {
|
||||
url = "https://tapioca-voip.svn.sourceforge.net/svnroot/tapioca-voip/trunk/telepathy-qt";
|
||||
inherit rev;
|
||||
sha256 = "0d7psgc8nr5bryrjgfg92622hbilp0qwx0pya3836bz2l6x3msnb";
|
||||
};
|
||||
|
||||
buildInputs = [cmake];
|
||||
propagatedBuildInputs = [qt];
|
||||
meta = {
|
||||
description = "Qt bindings for telepathy";
|
||||
};
|
||||
}
|
|
@ -2588,6 +2588,25 @@ rec {
|
|||
inherit fetchurl stdenv zlib;
|
||||
};
|
||||
|
||||
tapioca_qt = import ../development/libraries/tapioca-qt {
|
||||
inherit fetchsvn stdenv cmake telepathy_qt;
|
||||
qt = qt4;
|
||||
};
|
||||
|
||||
telepathy_gabble = import ../development/libraries/telepathy-gabble {
|
||||
inherit fetchurl stdenv pkgconfig libxslt telepathy_glib loudmouth;
|
||||
};
|
||||
|
||||
telepathy_glib = import ../development/libraries/telepathy-glib {
|
||||
inherit fetchurl stdenv dbus_glib pkgconfig libxslt python;
|
||||
inherit (gtkLibs) glib;
|
||||
};
|
||||
|
||||
telepathy_qt = import ../development/libraries/telepathy-qt {
|
||||
inherit fetchsvn stdenv cmake;
|
||||
qt = qt4;
|
||||
};
|
||||
|
||||
tk = import ../development/libraries/tk {
|
||||
inherit fetchurl stdenv tcl x11;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue