Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

libchamplain 0.12.10 -> 0.12.11

+8 -6
+8 -6
pkgs/development/libraries/libchamplain/default.nix
··· 1 { fetchurl, stdenv, pkgconfig, glib, gtk3, cairo, clutter, sqlite 2 , clutter_gtk, libsoup /*, libmemphis */ }: 3 4 stdenv.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 ··· 28 ''; 29 30 maintainers = [ ]; 31 - platforms = stdenv.lib.platforms.gnu; # arbitrary choice 32 }; 33 }
··· 1 { fetchurl, stdenv, pkgconfig, glib, gtk3, cairo, clutter, sqlite 2 , clutter_gtk, libsoup /*, libmemphis */ }: 3 4 + let version = "0.12.11"; in 5 stdenv.mkDerivation rec { 6 + name = "libchamplain-${version}"; 7 8 src = fetchurl { 9 + url = "mirror://gnome/sources/libchamplain/0.12/libchamplain-${version}.tar.xz"; 10 + sha256 = "19aadn4lh6mzpz2qzi5l1qcbi11a57qqv1zxp2n10z4nin4287l5"; 11 }; 12 13 buildInputs = [ pkgconfig ]; 14 15 propagatedBuildInputs = [ glib gtk3 cairo clutter_gtk sqlite libsoup ]; 16 17 + meta = with stdenv.lib; { 18 + inherit version; 19 homepage = http://projects.gnome.org/libchamplain/; 20 + license = licenses.lgpl2Plus; 21 22 description = "C library providing a ClutterActor to display maps"; 23 ··· 30 ''; 31 32 maintainers = [ ]; 33 + platforms = platforms.gnu; # arbitrary choice 34 }; 35 }