about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/dm/dmenu-bluetooth/package.nix
blob: 63a46f1e6e5015479047fa274b8c6f25de65b33c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{ lib
, stdenv
, fetchFromGitHub
, makeWrapper
, bluez
, dmenu
, nix-update-script
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "dmenu-bluetooth";
  version = "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 = "A script that generates a dmenu menu that uses bluetoothctl to connect to bluetooth devices and display status info";
    homepage = "https://github.com/Layerex/dmenu-bluetooth";
    license = lib.licenses.gpl3Only;
    maintainers = with lib.maintainers; [ ludovicopiero ];
    platforms = lib.platforms.linux;
  };
})