2018-12-27 08:27:29 +01:00
|
|
|
{ stdenv, fetchFromGitHub, fetchpatch, python3, meson, ninja, vala_0_40, pkgconfig, gobject-introspection, gnome3, gtk3, glib, gettext, hicolor-icon-theme, wrapGAppsHook }:
|
2014-10-08 18:18:37 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-11-02 17:44:05 +01:00
|
|
|
pname = "granite";
|
2018-12-27 03:48:47 +01:00
|
|
|
version = "5.2.2";
|
2018-02-03 03:01:54 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "elementary";
|
2018-11-02 17:44:05 +01:00
|
|
|
repo = pname;
|
2018-02-03 03:01:54 +01:00
|
|
|
rev = version;
|
2018-12-27 03:48:47 +01:00
|
|
|
sha256 = "1zp0pp5v3j8k6ail724p7h5jj2zmznj0a2ybwfw5sspfdw5bfydh";
|
2014-10-08 18:18:37 +02:00
|
|
|
};
|
2018-02-03 03:01:54 +01:00
|
|
|
|
2018-12-27 08:27:29 +01:00
|
|
|
patches = [
|
|
|
|
# Add Meson support that hit after 5.2.2
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/elementary/granite/commit/2066b377226cf327cb2d5399b6b40a2d36d47b11.patch";
|
|
|
|
sha256 = "1bxjgq8wvl1sb79cwhmh9kwawnkkfn7c5q67cyz1fjxmamwyyi85";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/elementary/granite/commit/f1b29f52e3aaf0f5d6bba44c42617da265f679c8.patch";
|
|
|
|
sha256 = "0cdp9ny6fj1lpcirab641p1qn1rbsvnsaa03hnr6zsdpim96jlvs";
|
|
|
|
})
|
|
|
|
# Resolve the circular dependency between granite and the datetime wingpanel indicator
|
|
|
|
# See: https://github.com/elementary/granite/pull/242
|
|
|
|
./02-datetime-clock-format-gsettings.patch
|
2018-02-09 12:23:37 +01:00
|
|
|
];
|
2018-02-03 03:01:54 +01:00
|
|
|
|
2018-02-09 12:23:37 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
gettext
|
2018-12-02 12:41:15 +01:00
|
|
|
gobject-introspection
|
2018-12-27 08:27:29 +01:00
|
|
|
meson
|
2018-08-16 12:48:39 +02:00
|
|
|
ninja
|
|
|
|
pkgconfig
|
2018-12-27 08:27:29 +01:00
|
|
|
python3
|
2018-11-02 17:44:05 +01:00
|
|
|
vala_0_40 # should be `elementary.vala` when elementary attribute set is merged
|
2018-12-27 08:27:29 +01:00
|
|
|
wrapGAppsHook
|
2018-02-09 12:23:37 +01:00
|
|
|
];
|
2018-11-02 17:44:05 +01:00
|
|
|
|
2018-02-09 12:23:37 +01:00
|
|
|
buildInputs = [
|
|
|
|
glib
|
2018-08-16 12:48:39 +02:00
|
|
|
gtk3
|
2018-12-27 08:27:29 +01:00
|
|
|
hicolor-icon-theme
|
|
|
|
gnome3.libgee
|
2018-02-09 12:23:37 +01:00
|
|
|
];
|
|
|
|
|
2018-12-27 08:27:29 +01:00
|
|
|
postPatch = ''
|
|
|
|
chmod +x meson/post_install.py
|
|
|
|
patchShebangs meson/post_install.py
|
|
|
|
'';
|
|
|
|
|
2018-02-09 12:23:37 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-10-08 18:18:37 +02:00
|
|
|
description = "An extension to GTK+ used by elementary OS";
|
2018-11-02 17:44:05 +01:00
|
|
|
longDescription = ''
|
|
|
|
Granite is a companion library for GTK+ and GLib. Among other things, it provides complex widgets and convenience functions
|
|
|
|
designed for use in apps built for elementary OS.
|
|
|
|
'';
|
2018-02-03 03:01:54 +01:00
|
|
|
homepage = https://github.com/elementary/granite;
|
2018-11-02 17:44:05 +01:00
|
|
|
license = licenses.lgpl3Plus;
|
2018-02-09 12:23:37 +01:00
|
|
|
platforms = platforms.linux;
|
2018-08-16 12:48:39 +02:00
|
|
|
maintainers = with maintainers; [ vozz worldofpeace ];
|
2014-10-08 18:18:37 +02:00
|
|
|
};
|
|
|
|
}
|