Files
nixpkgs/pkgs/development/libraries/telepathy-qt/default.nix
Sander van der Burg e685c82812 Refactored tapioca-qt closure with using the latest stable release instead of SVN version
svn path=/nixpkgs/trunk/; revision=14143
2009-02-20 16:18:56 +00:00

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