2012-03-17 13:30:51 +00:00
|
|
|
{ fetchurl, stdenv, pkgconfig, glib, gtk3, cairo, clutter, sqlite
|
|
|
|
, clutter_gtk, libsoup /*, libmemphis */ }:
|
2010-07-18 22:46:19 +00:00
|
|
|
|
2015-09-21 07:24:32 +00:00
|
|
|
let version = "0.12.11"; in
|
2010-07-18 22:46:19 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-09-21 07:24:32 +00:00
|
|
|
name = "libchamplain-${version}";
|
2010-07-18 22:46:19 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-09-21 07:24:32 +00:00
|
|
|
url = "mirror://gnome/sources/libchamplain/0.12/libchamplain-${version}.tar.xz";
|
|
|
|
sha256 = "19aadn4lh6mzpz2qzi5l1qcbi11a57qqv1zxp2n10z4nin4287l5";
|
2010-07-18 22:46:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ pkgconfig ];
|
|
|
|
|
2012-03-17 13:30:51 +00:00
|
|
|
propagatedBuildInputs = [ glib gtk3 cairo clutter_gtk sqlite libsoup ];
|
2010-07-18 22:46:19 +00:00
|
|
|
|
2015-09-21 07:24:32 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
inherit version;
|
2010-07-18 22:46:19 +00:00
|
|
|
homepage = http://projects.gnome.org/libchamplain/;
|
2015-09-21 07:24:32 +00:00
|
|
|
license = licenses.lgpl2Plus;
|
2010-07-18 22:46:19 +00:00
|
|
|
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "C library providing a ClutterActor to display maps";
|
2010-07-18 22:46:19 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2013-08-16 21:44:33 +00:00
|
|
|
maintainers = [ ];
|
2015-09-21 07:24:32 +00:00
|
|
|
platforms = platforms.gnu; # arbitrary choice
|
2010-07-18 22:46:19 +00:00
|
|
|
};
|
|
|
|
}
|