Files
nixpkgs/pkgs/by-name/dm/dmenu-bluetooth/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

51 lines
1.1 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
makeWrapper,
bluez,
dmenu,
nix-update-script,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "dmenu-bluetooth";
version = "0-unstable-2023-07-16";
src = fetchFromGitHub {
owner = "Layerex";
repo = "dmenu-bluetooth";
rev = "96e2e3e1dd7ea2d2ab0c20bf21746aba8d70cc46";
hash = "sha256-0G2PXWq9/JsLHnbOIJWSWWqfnBgOxaA8N2VyCbTUGmI=";
};
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
runHook preInstall
install -D --target-directory=$out/bin/ ./dmenu-bluetooth
wrapProgram $out/bin/dmenu-bluetooth \
--prefix PATH ":" ${
lib.makeBinPath [
dmenu
bluez
]
}
runHook postInstall
'';
passthru.updateScript = nix-update-script { };
meta = {
description = "Script that generates a dmenu menu that uses bluetoothctl to connect to bluetooth devices and display status info";
mainProgram = "dmenu-bluetooth";
homepage = "https://github.com/Layerex/dmenu-bluetooth";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ ludovicopiero ];
platforms = lib.platforms.linux;
};
})