Added some telepathy+tapioca stuff.

svn path=/nixpkgs/branches/stdenv-updates/; revision=10266
This commit is contained in:
Yury G. Kudryashov
2008-01-23 16:34:33 +00:00
parent b02b328b9c
commit 4de89f61b0
5 changed files with 85 additions and 0 deletions

View 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";
};
}

View 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;
};
}

View 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;
};
}

View 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";
};
}