forked from mirrors/nixpkgs
67 lines
1.1 KiB
Nix
67 lines
1.1 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, nix-update-script
|
|
, pantheon
|
|
, pkg-config
|
|
, meson
|
|
, ninja
|
|
, substituteAll
|
|
, vala
|
|
, gtk3
|
|
, granite
|
|
, libxml2
|
|
, wingpanel
|
|
, libgee
|
|
, xorg
|
|
, libgnomekbd
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wingpanel-indicator-keyboard";
|
|
version = "2.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "elementary";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-/sTx0qT7gNj1waQg9OKqHY6MtL+p0NljiIAXKA3DYmA=";
|
|
};
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script {
|
|
attrPath = "pantheon.${pname}";
|
|
};
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
libxml2
|
|
pkg-config
|
|
vala
|
|
];
|
|
|
|
buildInputs = [
|
|
granite
|
|
gtk3
|
|
libgee
|
|
wingpanel
|
|
xorg.xkeyboardconfig
|
|
];
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./fix-paths.patch;
|
|
gkbd_keyboard_display = "${libgnomekbd}/bin/gkbd-keyboard-display";
|
|
})
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Keyboard Indicator for Wingpanel";
|
|
homepage = "https://github.com/elementary/wingpanel-indicator-keyboard";
|
|
license = licenses.lgpl21Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = pantheon.maintainers;
|
|
};
|
|
}
|