forked from mirrors/nixpkgs
ebc6b67250
Vala now has the setup-hook we need. [0]
[0]: 79ca7f4cb4
57 lines
1.3 KiB
Nix
57 lines
1.3 KiB
Nix
{ stdenv, fetchFromGitHub, pantheon, pkgconfig, meson, ninja
|
|
, substituteAll, vala, gtk3, granite, libxml2, wingpanel, libgee
|
|
, xorg, libgnomekbd, elementary-icon-theme, wrapGAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wingpanel-indicator-keyboard";
|
|
version = "2.1.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "elementary";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0lrd474m6p8di73hqjilqnnl7qg72ky5narkgcvm4lk8dyi78mz0";
|
|
};
|
|
|
|
passthru = {
|
|
updateScript = pantheon.updateScript {
|
|
repoName = pname;
|
|
};
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
libxml2
|
|
pkgconfig
|
|
vala
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
elementary-icon-theme
|
|
granite
|
|
gtk3
|
|
libgee
|
|
wingpanel
|
|
];
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./fix-paths.patch;
|
|
libgnomekbd_path = "${libgnomekbd}/bin/";
|
|
config = "${xorg.xkeyboardconfig}/share/X11/xkb/rules/evdev.xml";
|
|
})
|
|
];
|
|
|
|
PKG_CONFIG_WINGPANEL_2_0_INDICATORSDIR = "${placeholder ''out''}/lib/wingpanel";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Keyboard Indicator for Wingpanel";
|
|
homepage = https://github.com/elementary/wingpanel-indicator-keyboard;
|
|
license = licenses.lgpl21Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = pantheon.maintainers;
|
|
};
|
|
}
|