at v192 1.1 kB view raw
1{ fetchurl, stdenv, pkgconfig, glib, gtk3, cairo, clutter, sqlite 2, clutter_gtk, libsoup /*, libmemphis */ }: 3 4stdenv.mkDerivation rec { 5 name = "libchamplain-0.12.10"; 6 7 src = fetchurl { 8 url = "mirror://gnome/sources/libchamplain/0.12/${name}.tar.xz"; 9 sha256 = "019b8scnx7d3wdylmpk9ihzh06w25b63x9cn8nhj6kjx82rcwlxz"; 10 }; 11 12 buildInputs = [ pkgconfig ]; 13 14 propagatedBuildInputs = [ glib gtk3 cairo clutter_gtk sqlite libsoup ]; 15 16 meta = { 17 homepage = http://projects.gnome.org/libchamplain/; 18 license = stdenv.lib.licenses.lgpl2Plus; 19 20 description = "C library providing a ClutterActor to display maps"; 21 22 longDescription = 23 '' libchamplain is a C library providing a ClutterActor to display 24 maps. It also provides a Gtk+ widget to display maps in Gtk+ 25 applications. Python and Perl bindings are also available. It 26 supports numerous free map sources such as OpenStreetMap, 27 OpenCycleMap, OpenAerialMap, and Maps for free. 28 ''; 29 30 maintainers = [ ]; 31 platforms = stdenv.lib.platforms.gnu; # arbitrary choice 32 }; 33}