2021-11-24 01:54:56 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2019-08-05 18:02:06 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, python3
|
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, vala
|
2021-01-17 02:21:50 +00:00
|
|
|
, pkg-config
|
2019-08-05 18:02:06 +00:00
|
|
|
, libgee
|
|
|
|
, gtk3
|
|
|
|
, glib
|
|
|
|
, gettext
|
2020-05-03 15:46:29 +00:00
|
|
|
, gsettings-desktop-schemas
|
2019-08-05 18:02:06 +00:00
|
|
|
, gobject-introspection
|
|
|
|
, wrapGAppsHook
|
|
|
|
}:
|
2014-10-08 16:18:37 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-11-02 16:44:05 +00:00
|
|
|
pname = "granite";
|
2022-01-29 12:12:08 +00:00
|
|
|
version = "6.2.0"; # nixpkgs-update: no auto update
|
2020-05-03 15:46:29 +00: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-11-24 01:54:56 +00:00
|
|
|
sha256 = "sha256-WM0Wo9giVP5pkMFaPCHsMfnAP6xD71zg6QLCYV6lmkY=";
|
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
|
2021-01-17 02:21:50 +00:00
|
|
|
pkg-config
|
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
|
|
|
|
2021-07-25 11:28:20 +00:00
|
|
|
propagatedBuildInputs = [
|
2018-02-09 11:23:37 +00:00
|
|
|
glib
|
2021-07-25 11:28:20 +00:00
|
|
|
gsettings-desktop-schemas # is_clock_format_12h uses "org.gnome.desktop.interface clock-format"
|
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
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with 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.
|
|
|
|
'';
|
2020-04-01 01:11:51 +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;
|
2021-09-18 15:00:51 +00:00
|
|
|
maintainers = teams.pantheon.members;
|
2021-10-28 02:47:36 +00:00
|
|
|
mainProgram = "granite-demo";
|
2014-10-08 16:18:37 +00:00
|
|
|
};
|
|
|
|
}
|