e685c82812
svn path=/nixpkgs/trunk/; revision=14143
11 lines
262 B
Nix
11 lines
262 B
Nix
{stdenv, fetchurl, cmake, qt4}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "telepathy-qt-0.14.1";
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/tapioca-voip/telepathy-qt-0.14.1.tar.gz;
|
|
md5 = "476e3fbd68b3eaf5354559be7de99333";
|
|
};
|
|
buildInputs = [ cmake qt4 ];
|
|
}
|