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