2019-08-05 18:02:06 +00:00
|
|
|
{ stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, python3
|
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, vala
|
|
|
|
, pkgconfig
|
|
|
|
, libgee
|
|
|
|
, pantheon
|
|
|
|
, gtk3
|
|
|
|
, glib
|
|
|
|
, gettext
|
|
|
|
, gobject-introspection
|
|
|
|
, wrapGAppsHook
|
|
|
|
}:
|
2014-10-08 16:18:37 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-11-02 16:44:05 +00:00
|
|
|
pname = "granite";
|
2019-12-17 06:54:08 +00:00
|
|
|
version = "5.3.0";
|
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;
|
2019-12-17 06:54:08 +00:00
|
|
|
sha256 = "1gvrk8gh959bmq8w0kaym7sx13v763lk8x5hck00msgmyrsarfwa";
|
2014-10-08 16:18:37 +00:00
|
|
|
};
|
2018-02-03 02:01:54 +00:00
|
|
|
|
2018-08-20 20:31:18 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = pantheon.updateScript {
|
2019-12-22 06:44:42 +00:00
|
|
|
attrPath = "pantheon.${pname}";
|
2018-08-20 20:31:18 +00: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 10:48:39 +00:00
|
|
|
ninja
|
|
|
|
pkgconfig
|
2018-12-27 07:27:29 +00:00
|
|
|
python3
|
2018-08-20 20:31:18 +00: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 10:48:39 +00:00
|
|
|
gtk3
|
2018-08-20 20:31:18 +00: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 22:49:40 +00:00
|
|
|
description = "An extension to GTK used by elementary OS";
|
2018-11-02 16:44:05 +00:00
|
|
|
longDescription = ''
|
2019-09-03 22:49:40 +00: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.
|
|
|
|
'';
|
2018-02-03 02:01:54 +00: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 20:31:18 +00:00
|
|
|
maintainers = pantheon.maintainers;
|
2014-10-08 16:18:37 +00:00
|
|
|
};
|
|
|
|
}
|