2022-09-09 21:20:13 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, makeWrapper
|
|
|
|
, bluez
|
|
|
|
}:
|
|
|
|
|
2023-02-11 16:12:53 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2022-09-09 21:20:13 +00:00
|
|
|
pname = "rofi-bluetooth";
|
2023-02-11 16:12:53 +00:00
|
|
|
version = "unstable-2023-02-03";
|
2022-09-09 21:20:13 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nickclyde";
|
2023-02-11 16:12:53 +00:00
|
|
|
repo = finalAttrs.pname;
|
2022-09-09 21:20:13 +00:00
|
|
|
# https://github.com/nickclyde/rofi-bluetooth/issues/19
|
2023-02-11 16:12:53 +00:00
|
|
|
rev = "9d91c048ff129819f4c6e9e48a17bd54343bbffb";
|
|
|
|
sha256 = "sha256-1Xe3QFThIvJDCUznDP5ZBzwZEMuqmxpDIV+BcVvQDG8=";
|
2022-09-09 21:20:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
|
|
|
|
install -D --target-directory=$out/bin/ ./rofi-bluetooth
|
|
|
|
|
|
|
|
wrapProgram $out/bin/rofi-bluetooth \
|
2023-02-11 16:12:53 +00:00
|
|
|
--prefix PATH ":" ${lib.makeBinPath [ bluez ] }
|
2022-09-09 21:20:13 +00:00
|
|
|
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Rofi-based interface to connect to bluetooth devices and display status info";
|
|
|
|
homepage = "https://github.com/nickclyde/rofi-bluetooth";
|
|
|
|
license = licenses.gpl3Only;
|
|
|
|
maintainers = with maintainers; [ MoritzBoehme ];
|
2023-08-11 16:06:15 +00:00
|
|
|
mainProgram = "rofi-bluetooth";
|
2022-09-09 21:20:13 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
2023-02-11 16:12:53 +00:00
|
|
|
})
|