2019-08-05 19:02:06 +01:00
|
|
|
{ stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, python3
|
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, vala
|
|
|
|
, pkgconfig
|
|
|
|
, libgee
|
|
|
|
, pantheon
|
|
|
|
, gtk3
|
|
|
|
, glib
|
|
|
|
, gettext
|
|
|
|
, gobject-introspection
|
|
|
|
, wrapGAppsHook
|
|
|
|
}:
|
2014-10-08 17:18:37 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-11-02 16:44:05 +00:00
|
|
|
pname = "granite";
|
2020-04-03 22:10:31 +01:00
|
|
|
version = "5.3.1";
|
2018-02-03 02:01:54 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "elementary";
|
2018-11-02 16:44:05 +00:00
|
|
|
repo = pname;
|
2018-02-03 02:01:54 +00:00
|
|
|
rev = version;
|
2020-04-03 22:10:31 +01:00
|
|
|
sha256 = "12f1n07cjlc7czf642ak6964wl4fsgakc39nnmiba22z5aahfpz9";
|
2014-10-08 17:18:37 +01:00
|
|
|
};
|
2018-02-03 02:01:54 +00:00
|
|
|
|
2018-08-20 21:31:18 +01:00
|
|
|
passthru = {
|
|
|
|
updateScript = pantheon.updateScript {
|
2019-12-22 06:44:42 +00:00
|
|
|
attrPath = "pantheon.${pname}";
|
2018-08-20 21:31:18 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-02-09 11:23:37 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
gettext
|
2018-12-02 11:41:15 +00:00
|
|
|
gobject-introspection
|
2018-12-27 07:27:29 +00:00
|
|
|
meson
|
2018-08-16 11:48:39 +01:00
|
|
|
ninja
|
|
|
|
pkgconfig
|
2018-12-27 07:27:29 +00:00
|
|
|
python3
|
2018-08-20 21:31:18 +01:00
|
|
|
vala
|
2018-12-27 07:27:29 +00:00
|
|
|
wrapGAppsHook
|
2018-02-09 11:23:37 +00:00
|
|
|
];
|
2018-11-02 16:44:05 +00:00
|
|
|
|
2018-02-09 11:23:37 +00:00
|
|
|
buildInputs = [
|
|
|
|
glib
|
2018-08-16 11:48:39 +01:00
|
|
|
gtk3
|
2018-08-20 21:31:18 +01:00
|
|
|
libgee
|
2018-02-09 11:23:37 +00:00
|
|
|
];
|
|
|
|
|
2018-12-27 07:27:29 +00:00
|
|
|
postPatch = ''
|
|
|
|
chmod +x meson/post_install.py
|
|
|
|
patchShebangs meson/post_install.py
|
|
|
|
'';
|
|
|
|
|
2018-02-09 11:23:37 +00:00
|
|
|
meta = with stdenv.lib; {
|
2019-09-03 23:49:40 +01:00
|
|
|
description = "An extension to GTK used by elementary OS";
|
2018-11-02 16:44:05 +00:00
|
|
|
longDescription = ''
|
2019-09-03 23:49:40 +01:00
|
|
|
Granite is a companion library for GTK and GLib. Among other things, it provides complex widgets and convenience functions
|
2018-11-02 16:44:05 +00:00
|
|
|
designed for use in apps built for elementary OS.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/elementary/granite";
|
2018-11-02 16:44:05 +00:00
|
|
|
license = licenses.lgpl3Plus;
|
2018-02-09 11:23:37 +00:00
|
|
|
platforms = platforms.linux;
|
2018-08-20 21:31:18 +01:00
|
|
|
maintainers = pantheon.maintainers;
|
2014-10-08 17:18:37 +01:00
|
|
|
};
|
|
|
|
}
|