mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
Restore libchamplain
svn path=/nixpkgs/branches/glib-2.30-take2/; revision=33291
This commit is contained in:
parent
f0039537ce
commit
aa47fca2f6
35
pkgs/development/libraries/libchamplain/0.6.nix
Normal file
35
pkgs/development/libraries/libchamplain/0.6.nix
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
{ fetchurl, stdenv, pkgconfig, glib, gtk, cairo, clutter, sqlite
|
||||||
|
, clutter_gtk_0_10, libsoup /*, libmenphis */ }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "libchamplain-0.6.1";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://download.gnome.org/sources/libchamplain/0.6/${name}.tar.gz";
|
||||||
|
sha256 = "1l1in4khnral157j46aq2d26nviz23icnm353587vcwjhdbw86sg";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ pkgconfig ];
|
||||||
|
|
||||||
|
# These all appear in `champlain{,-gtk}-0.6.pc'.
|
||||||
|
propagatedBuildInputs =
|
||||||
|
[ glib gtk cairo clutter clutter_gtk_0_10 sqlite libsoup ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://projects.gnome.org/libchamplain/;
|
||||||
|
license = "LGPLv2+";
|
||||||
|
|
||||||
|
description = "libchamplain, a 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.
|
||||||
|
'';
|
||||||
|
|
||||||
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
||||||
|
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
|
||||||
|
};
|
||||||
|
}
|
@ -3911,6 +3911,8 @@ let
|
|||||||
inherit (gnome) libsoup;
|
inherit (gnome) libsoup;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
libchamplain_0_6 = callPackage ../development/libraries/libchamplain/0.6.nix {};
|
||||||
|
|
||||||
libchop = callPackage ../development/libraries/libchop { };
|
libchop = callPackage ../development/libraries/libchop { };
|
||||||
|
|
||||||
libcm = callPackage ../development/libraries/libcm { };
|
libcm = callPackage ../development/libraries/libcm { };
|
||||||
|
Loading…
Reference in New Issue
Block a user