summary refs log tree commit diff
path: root/pkgs/development/libraries/libchamplain
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-09-21 09:24:32 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-09-21 19:22:15 +0200
commit1339183279b880e4b8a170cfa48352c3cedc8ea5 (patch)
treeb5abb1a0e7fdf5214676027a8d0a76d1e7b8a718 /pkgs/development/libraries/libchamplain
parentee7df6a5667ee64b1ba68ec8af57d05b85e1bbb2 (diff)
downloadnixpkgs-1339183279b880e4b8a170cfa48352c3cedc8ea5.tar
nixpkgs-1339183279b880e4b8a170cfa48352c3cedc8ea5.tar.gz
nixpkgs-1339183279b880e4b8a170cfa48352c3cedc8ea5.tar.bz2
nixpkgs-1339183279b880e4b8a170cfa48352c3cedc8ea5.tar.lz
nixpkgs-1339183279b880e4b8a170cfa48352c3cedc8ea5.tar.xz
nixpkgs-1339183279b880e4b8a170cfa48352c3cedc8ea5.tar.zst
nixpkgs-1339183279b880e4b8a170cfa48352c3cedc8ea5.zip
libchamplain 0.12.10 -> 0.12.11
Diffstat (limited to 'pkgs/development/libraries/libchamplain')
-rw-r--r--pkgs/development/libraries/libchamplain/default.nix14
1 files changed, 8 insertions, 6 deletions
diff --git a/pkgs/development/libraries/libchamplain/default.nix b/pkgs/development/libraries/libchamplain/default.nix
index f0b4a1064fe..c964801f300 100644
--- a/pkgs/development/libraries/libchamplain/default.nix
+++ b/pkgs/development/libraries/libchamplain/default.nix
@@ -1,21 +1,23 @@
 { fetchurl, stdenv, pkgconfig, glib, gtk3, cairo, clutter, sqlite
 , clutter_gtk, libsoup /*, libmemphis */ }:
 
+let version = "0.12.11"; in
 stdenv.mkDerivation rec {
-  name = "libchamplain-0.12.10";
+  name = "libchamplain-${version}";
 
   src = fetchurl {
-    url = "mirror://gnome/sources/libchamplain/0.12/${name}.tar.xz";
-    sha256 = "019b8scnx7d3wdylmpk9ihzh06w25b63x9cn8nhj6kjx82rcwlxz";
+    url = "mirror://gnome/sources/libchamplain/0.12/libchamplain-${version}.tar.xz";
+    sha256 = "19aadn4lh6mzpz2qzi5l1qcbi11a57qqv1zxp2n10z4nin4287l5";
   };
 
   buildInputs = [ pkgconfig ];
 
   propagatedBuildInputs = [ glib gtk3 cairo clutter_gtk sqlite libsoup ];
 
-  meta = {
+  meta = with stdenv.lib; {
+    inherit version;
     homepage = http://projects.gnome.org/libchamplain/;
-    license = stdenv.lib.licenses.lgpl2Plus;
+    license = licenses.lgpl2Plus;
 
     description = "C library providing a ClutterActor to display maps";
 
@@ -28,6 +30,6 @@ stdenv.mkDerivation rec {
       '';
 
      maintainers = [ ];
-     platforms = stdenv.lib.platforms.gnu;  # arbitrary choice
+     platforms = platforms.gnu;  # arbitrary choice
   };
 }