2008-01-23 17:34:33 +01:00
|
|
|
args: with args;
|
2008-02-18 21:53:23 +01:00
|
|
|
let rev = "2066"; in
|
2008-01-23 17:34:33 +01:00
|
|
|
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";
|
|
|
|
};
|
|
|
|
}
|