nixpkgs/pkgs/development/libraries/telepathy-qt/default.nix
Yury G. Kudryashov 4de89f61b0 Added some telepathy+tapioca stuff.
svn path=/nixpkgs/branches/stdenv-updates/; revision=10266
2008-01-23 16:34:33 +00:00

17 lines
405 B
Nix

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