mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
libchamplain: 0.12.16 → 0.12.19
Mainly meson port. https://mail.gnome.org/archives/libchamplain-list/2019-February/msg00001.html https://mail.gnome.org/archives/libchamplain-list/2019-February/msg00002.html https://mail.gnome.org/archives/libchamplain-list/2019-March/msg00000.html
This commit is contained in:
parent
c547c03c90
commit
6b8c1d9f4e
@ -1,23 +1,27 @@
|
||||
{ fetchurl, stdenv, pkgconfig, glib, gtk3, cairo, sqlite, gnome3
|
||||
{ fetchurl, stdenv, meson, ninja, vala, gtk-doc, docbook_xsl, docbook_xml_dtd_412, pkgconfig, glib, gtk3, cairo, sqlite, gnome3
|
||||
, clutter-gtk, libsoup, gobject-introspection /*, libmemphis */ }:
|
||||
|
||||
let
|
||||
pname = "libchamplain";
|
||||
version = "0.12.16";
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "libchamplain";
|
||||
version = "0.12.19";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
||||
sha256 = "13chvc2n074i0jw5jlb8i7cysda4yqx58ca6y3mrlrl9g37k2zja";
|
||||
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||
sha256 = "191aid1qsfkab5whbzj2r3g63dpdgrwp5141mfywvqyvdhr2x11n";
|
||||
};
|
||||
|
||||
outputs = [ "out" "dev" ];
|
||||
outputs = [ "out" "dev" "devdoc" ];
|
||||
|
||||
nativeBuildInputs = [ pkgconfig gobject-introspection ];
|
||||
nativeBuildInputs = [ meson ninja pkgconfig gobject-introspection vala gtk-doc docbook_xsl docbook_xml_dtd_412 ];
|
||||
|
||||
propagatedBuildInputs = [ glib gtk3 cairo clutter-gtk sqlite libsoup ];
|
||||
buildInputs = [ sqlite libsoup ];
|
||||
|
||||
propagatedBuildInputs = [ glib gtk3 cairo clutter-gtk ];
|
||||
|
||||
mesonFlags = [
|
||||
"-Dgtk_doc=true"
|
||||
"-Dvapi=true"
|
||||
];
|
||||
|
||||
passthru = {
|
||||
updateScript = gnome3.updateScript {
|
||||
|
Loading…
Reference in New Issue
Block a user