nixpkgs/pkgs/development/libraries/libchamplain/default.nix

38 lines
1.2 KiB
Nix
Raw Normal View History

{ fetchurl, stdenv, pkgconfig, glib, gtk3, cairo, clutter, sqlite
, clutter_gtk, libsoup, gobjectIntrospection /*, libmemphis */ }:
stdenv.mkDerivation rec {
2016-09-18 19:26:29 +00:00
major = "0.12";
2017-10-03 01:16:54 +00:00
version = "${major}.16";
2015-09-21 07:24:32 +00:00
name = "libchamplain-${version}";
src = fetchurl {
2016-09-18 19:26:29 +00:00
url = "mirror://gnome/sources/libchamplain/${major}/${name}.tar.xz";
2017-10-03 01:16:54 +00:00
sha256 = "13chvc2n074i0jw5jlb8i7cysda4yqx58ca6y3mrlrl9g37k2zja";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gobjectIntrospection ];
propagatedBuildInputs = [ glib gtk3 cairo clutter_gtk sqlite libsoup ];
2015-09-21 07:24:32 +00:00
meta = with stdenv.lib; {
inherit version;
homepage = http://projects.gnome.org/libchamplain/;
2015-09-21 07:24:32 +00:00
license = licenses.lgpl2Plus;
description = "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.
'';
2013-08-16 21:44:33 +00:00
maintainers = [ ];
2015-09-21 07:24:32 +00:00
platforms = platforms.gnu; # arbitrary choice
};
}