2018-08-20 13:31:18 -07:00
|
|
|
{ stdenv, fetchFromGitHub, pantheon, pkgconfig, meson, ninja, vala, libxml2, desktop-file-utils
|
2019-06-10 23:26:53 -07:00
|
|
|
, gtk3, glib, granite, libgee, elementary-icon-theme, wrapGAppsHook }:
|
2018-08-20 13:31:18 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-05 15:41:32 -07:00
|
|
|
pname = "elementary-shortcut-overlay";
|
2018-08-20 13:31:18 -07:00
|
|
|
version = "1.0.1";
|
|
|
|
|
2019-08-05 15:41:32 -07:00
|
|
|
repoName = "shortcut-overlay";
|
2018-08-20 13:31:18 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "elementary";
|
2019-08-05 15:41:32 -07:00
|
|
|
repo = repoName;
|
2018-08-20 13:31:18 -07:00
|
|
|
rev = version;
|
|
|
|
sha256 = "1ph4rx2l5fn0zh4fjfjlgbgskmzc0lvzqgcv7v4kr5m4rij1p4y4";
|
|
|
|
};
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
updateScript = pantheon.updateScript {
|
2019-08-05 15:41:32 -07:00
|
|
|
inherit repoName;
|
|
|
|
attrPath = pname;
|
2018-08-20 13:31:18 -07:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
desktop-file-utils
|
|
|
|
libxml2
|
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
pkgconfig
|
|
|
|
vala
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
elementary-icon-theme
|
|
|
|
glib
|
|
|
|
granite
|
|
|
|
gtk3
|
|
|
|
libgee
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A native OS-wide shortcut overlay to be launched by Gala";
|
|
|
|
homepage = https://github.com/elementary/shortcut-overlay;
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = pantheon.maintainers;
|
|
|
|
};
|
|
|
|
}
|