2018-07-13 22:46:18 +01:00
|
|
|
{ stdenv, fetchurl, meson, ninja, pkgconfig, gnome3, glib, gtk3, wrapGAppsHook, desktop-file-utils
|
2019-04-17 01:38:26 +01:00
|
|
|
, gettext, itstool, libxml2, libxslt, docbook_xsl, docbook_xml_dtd_43, systemd, python3, gsettings-desktop-schemas }:
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-25 20:07:20 +00:00
|
|
|
name = "gnome-logs-${version}";
|
2019-04-13 13:44:32 +01:00
|
|
|
version = "3.32.1";
|
2018-02-25 20:07:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-10-05 01:12:11 +01:00
|
|
|
url = "mirror://gnome/sources/gnome-logs/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
2019-04-13 13:44:32 +01:00
|
|
|
sha256 = "0hh3nnbq7q2xbflvaywanm0j3dqhb04ngphskhnjx2sg7px12068";
|
2018-02-25 20:07:20 +00:00
|
|
|
};
|
|
|
|
|
2018-07-05 23:44:49 +01:00
|
|
|
mesonFlags = [
|
|
|
|
"-Dtests=true"
|
|
|
|
"-Dman=true"
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2018-09-05 01:46:47 +01:00
|
|
|
python3
|
2018-07-05 23:44:49 +01:00
|
|
|
meson ninja pkgconfig wrapGAppsHook gettext itstool desktop-file-utils
|
|
|
|
libxml2 libxslt docbook_xsl docbook_xml_dtd_43
|
|
|
|
];
|
2019-04-17 01:38:26 +01:00
|
|
|
buildInputs = [ glib gtk3 systemd gsettings-desktop-schemas gnome3.adwaita-icon-theme ];
|
2018-07-05 23:44:49 +01:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
chmod +x meson_post_install.py
|
|
|
|
patchShebangs meson_post_install.py
|
|
|
|
'';
|
|
|
|
|
|
|
|
doCheck = true;
|
2018-03-15 00:14:52 +00:00
|
|
|
|
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = "gnome-logs";
|
|
|
|
attrPath = "gnome3.gnome-logs";
|
|
|
|
};
|
|
|
|
};
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://wiki.gnome.org/Apps/Logs;
|
|
|
|
description = "A log viewer for the systemd journal";
|
|
|
|
maintainers = gnome3.maintainers;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|