summary refs log tree commit diff
path: root/pkgs/applications/audio/spotifywm/default.nix
blob: c2248056834e55b4210c3b4f209e0220fdb86989 (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
{ lib, stdenv, fetchFromGitHub, spotify, xorg, makeWrapper }:
stdenv.mkDerivation {
  pname = "spotifywm-unstable";
  version = "2022-10-26";

  src = fetchFromGitHub {
    owner = "dasJ";
    repo = "spotifywm";
    rev = "8624f539549973c124ed18753881045968881745";
    sha256 = "sha256-AsXqcoqUXUFxTG+G+31lm45gjP6qGohEnUSUtKypew0=";
  };

  nativeBuildInputs = [ makeWrapper ];

  buildInputs = [ xorg.libX11 ];

  installPhase = ''
    runHook preInstall

    mkdir -p $out/{bin,lib}
    install -Dm644 spotifywm.so $out/lib/
    ln -sf ${spotify}/bin/spotify $out/bin/spotify

    # wrap spotify to use spotifywm.so
    wrapProgram $out/bin/spotify --set LD_PRELOAD "$out/lib/spotifywm.so"
    # backwards compatibility for people who are using the "spotifywm" binary
    ln -sf $out/bin/spotify $out/bin/spotifywm

    runHook postInstall
  '';

  meta = with lib; {
    homepage = "https://github.com/dasJ/spotifywm";
    description = "Wrapper around Spotify that correctly sets class name before opening the window";
    license = licenses.mit;
    platforms = platforms.linux;
    maintainers = with maintainers; [ jqueiroz the-argus ];
  };
}