2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2019-08-05 19:02:06 +01:00
|
|
|
, fetchFromGitHub
|
2020-07-29 17:33:39 +01:00
|
|
|
, nix-update-script
|
2019-08-05 19:02:06 +01:00
|
|
|
, python3
|
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, vala
|
2021-01-17 02:21:50 +00:00
|
|
|
, pkg-config
|
2019-08-05 19:02:06 +01:00
|
|
|
, libgee
|
|
|
|
, pantheon
|
|
|
|
, gtk3
|
|
|
|
, glib
|
|
|
|
, gettext
|
2020-05-03 16:46:29 +01:00
|
|
|
, gsettings-desktop-schemas
|
2019-08-05 19:02:06 +01:00
|
|
|
, gobject-introspection
|
|
|
|
, wrapGAppsHook
|
|
|
|
}:
|
2014-10-08 17:18:37 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-11-02 16:44:05 +00:00
|
|
|
pname = "granite";
|
2021-08-11 09:57:06 +01:00
|
|
|
version = "6.1.1";
|
2020-05-03 16:46:29 +01:00
|
|
|
|
|
|
|
outputs = [ "out" "dev" ];
|
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;
|
2021-08-11 09:57:06 +01:00
|
|
|
sha256 = "13c6xk014psvmll9qybdqviskllw4g150m2k4ikjbv59g0rfp7xq";
|
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 = {
|
2020-07-29 17:33:39 +01:00
|
|
|
updateScript = nix-update-script {
|
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
|
2021-01-17 02:21:50 +00:00
|
|
|
pkg-config
|
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
|
|
|
|
2021-07-25 12:28:20 +01:00
|
|
|
propagatedBuildInputs = [
|
2018-02-09 11:23:37 +00:00
|
|
|
glib
|
2021-07-25 12:28:20 +01:00
|
|
|
gsettings-desktop-schemas # is_clock_format_12h uses "org.gnome.desktop.interface clock-format"
|
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
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with 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;
|
2021-09-18 16:00:51 +01:00
|
|
|
maintainers = teams.pantheon.members;
|
2014-10-08 17:18:37 +01:00
|
|
|
};
|
|
|
|
}
|