nixpkgs/pkgs/development/libraries/telepathy-glib/default.nix
Eelco Dolstra 94d7d1fdbb * Got rid of all --disable-static flags; they're redundant now.
* Also a bunch of style cleanups (tabs, with args, ...).

svn path=/nixpkgs/branches/stdenv-updates/; revision=15235
2009-04-21 23:18:09 +00:00

19 lines
402 B
Nix

args: with args;
stdenv.mkDerivation rec {
name = "telepathy-glib-0.7.0";
src = fetchurl {
url = "${meta.homepage}/releases/telepathy-glib/${name}.tar.gz";
sha256 = "0hf1jrgisr7skrji7djh66q0ic351vlsm65xqy982p5d0axzxkz5";
};
propagatedBuildInputs = [dbus_glib glib python];
buildInputs = [pkgconfig libxslt];
meta = {
homepage = http://telepathy.freedesktop.org;
};
}