Merge pull request #330487 from alyraffauf/rofi-bluetooth-add-bc

rofi-bluetooth: add bc to binPath
This commit is contained in:
Peder Bergebakken Sundt 2024-08-04 22:17:41 +02:00 committed by GitHub
commit a4270e54ec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,6 +2,7 @@
, stdenv
, fetchFromGitHub
, makeWrapper
, bc
, bluez
}:
@ -25,7 +26,7 @@ stdenv.mkDerivation {
install -D --target-directory=$out/bin/ ./rofi-bluetooth
wrapProgram $out/bin/rofi-bluetooth \
--prefix PATH ":" ${lib.makeBinPath [ bluez ] }
--prefix PATH ":" ${lib.makeBinPath [ bc bluez ] }
runHook postInstall
'';