tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
libchamplain 0.12.10 -> 0.12.11
Tobias Geerinckx-Rice
10 years ago
13391832
ee7df6a5
+8
-6
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
libchamplain
default.nix
+8
-6
pkgs/development/libraries/libchamplain/default.nix
···
1
1
{ fetchurl, stdenv, pkgconfig, glib, gtk3, cairo, clutter, sqlite
2
2
, clutter_gtk, libsoup /*, libmemphis */ }:
3
3
4
4
+
let version = "0.12.11"; in
4
5
stdenv.mkDerivation rec {
5
5
-
name = "libchamplain-0.12.10";
6
6
+
name = "libchamplain-${version}";
6
7
7
8
src = fetchurl {
8
8
-
url = "mirror://gnome/sources/libchamplain/0.12/${name}.tar.xz";
9
9
-
sha256 = "019b8scnx7d3wdylmpk9ihzh06w25b63x9cn8nhj6kjx82rcwlxz";
9
9
+
url = "mirror://gnome/sources/libchamplain/0.12/libchamplain-${version}.tar.xz";
10
10
+
sha256 = "19aadn4lh6mzpz2qzi5l1qcbi11a57qqv1zxp2n10z4nin4287l5";
10
11
};
11
12
12
13
buildInputs = [ pkgconfig ];
13
14
14
15
propagatedBuildInputs = [ glib gtk3 cairo clutter_gtk sqlite libsoup ];
15
16
16
16
-
meta = {
17
17
+
meta = with stdenv.lib; {
18
18
+
inherit version;
17
19
homepage = http://projects.gnome.org/libchamplain/;
18
18
-
license = stdenv.lib.licenses.lgpl2Plus;
20
20
+
license = licenses.lgpl2Plus;
19
21
20
22
description = "C library providing a ClutterActor to display maps";
21
23
···
28
30
'';
29
31
30
32
maintainers = [ ];
31
31
-
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
33
33
+
platforms = platforms.gnu; # arbitrary choice
32
34
};
33
35
}