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