1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/telepathy-qt/default.nix
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 ];
}