mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-18 17:10:27 +00:00
57 lines
1.2 KiB
Nix
57 lines
1.2 KiB
Nix
|
{ stdenv, fetchFromGitHub, pantheon, pkgconfig, meson, python3
|
||
|
, ninja, vala, gtk3, granite, libnotify, wingpanel, libgee, libxml2
|
||
|
, gobject-introspection, elementary-icon-theme, wrapGAppsHook }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "wingpanel-indicator-bluetooth";
|
||
|
version = "2.1.2";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "elementary";
|
||
|
repo = pname;
|
||
|
rev = version;
|
||
|
sha256 = "1gx0xglp6b3znxl4d2vpzhfkxz5z8q04hh7z2mrihj1in155bn44";
|
||
|
};
|
||
|
|
||
|
passthru = {
|
||
|
updateScript = pantheon.updateScript {
|
||
|
repoName = pname;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
gobject-introspection
|
||
|
libxml2
|
||
|
meson
|
||
|
ninja
|
||
|
pkgconfig
|
||
|
python3
|
||
|
vala
|
||
|
wrapGAppsHook
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
elementary-icon-theme
|
||
|
granite
|
||
|
gtk3
|
||
|
libgee
|
||
|
libnotify
|
||
|
wingpanel
|
||
|
];
|
||
|
|
||
|
PKG_CONFIG_WINGPANEL_2_0_INDICATORSDIR = "lib/wingpanel";
|
||
|
|
||
|
postPatch = ''
|
||
|
chmod +x meson/post_install.py
|
||
|
patchShebangs meson/post_install.py
|
||
|
'';
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "Bluetooth Indicator for Wingpanel";
|
||
|
homepage = https://github.com/elementary/wingpanel-indicator-bluetooth;
|
||
|
license = licenses.lgpl21Plus;
|
||
|
platforms = platforms.linux;
|
||
|
maintainers = pantheon.maintainers;
|
||
|
};
|
||
|
}
|