summary refs log tree commit diff
path: root/pkgs/development/libraries/libchamplain/0.6.nix
blob: a2b35a7265180d5069d3506b77eafb1c58dceed2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ fetchurl, stdenv, pkgconfig, glib, gtk, cairo, clutter, sqlite
, clutter_gtk_0_10, libsoup /*, libmenphis */ }:

stdenv.mkDerivation rec {
  name = "libchamplain-0.6.1";

  src = fetchurl {
    url = "mirror://gnome/sources/libchamplain/0.6/${name}.tar.gz";
    sha256 = "1l1in4khnral157j46aq2d26nviz23icnm353587vcwjhdbw86sg";
  };

  buildInputs = [ pkgconfig ];

  # These all appear in `champlain{,-gtk}-0.6.pc'.
  propagatedBuildInputs =
    [ glib gtk cairo clutter clutter_gtk_0_10 sqlite libsoup ];

  configureFlags = [ "--disable-introspection" ]; # not needed anywhere AFAIK

  meta = {
    homepage = http://projects.gnome.org/libchamplain/;
    license = stdenv.lib.licenses.lgpl2Plus;

    description = "libchamplain, a C library providing a ClutterActor to display maps";

    longDescription =
      '' libchamplain is a C library providing a ClutterActor to display
         maps.  It also provides a Gtk+ widget to display maps in Gtk+
         applications.  Python and Perl bindings are also available.  It
         supports numerous free map sources such as OpenStreetMap,
         OpenCycleMap, OpenAerialMap, and Maps for free.
      '';

     maintainers = [ ];
     platforms = stdenv.lib.platforms.gnu;  # arbitrary choice
  };
}