about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/budgie/plugins/budgie-media-player-applet/default.nix
blob: ae3a44f22fd03cb31a6a04f4d0c526950244a467 (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
44
45
46
47
48
49
50
{ lib
, stdenv
, fetchFromGitHub
, glib
, meson
, ninja
, python3Packages
}:

stdenv.mkDerivation {
  pname = "budgie-media-player-applet";
  version = "1.0.0-unstable-2023-12-31";

  src = fetchFromGitHub {
    owner = "zalesyc";
    repo = "budgie-media-player-applet";
    rev = "24500be1e0a1f92968df80f8befdf896723ba8ee";
    hash = "sha256-jQgkE6vv8PIcB0MJgfsQvzMRkkMU51Gqefoa2G6YJCw=";
  };

  nativeBuildInputs = [
    glib # glib-compile-schemas
    meson
    ninja
    python3Packages.wrapPython
  ];

  pythonPath = with python3Packages; [
    pillow
    requests
  ];

  postPatch = ''
    substituteInPlace meson.build --replace "/usr" "$out"
    substituteInPlace meson_post_install.py --replace '"/", "usr"' "\"$out\""
  '';

  postFixup = ''
    buildPythonPath "$out $pythonPath"
    patchPythonScript "$out/lib/budgie-desktop/plugins/budgie-media-player-applet/applet.py"
  '';

  meta = {
    description = "Media Control Applet for the Budgie Panel";
    homepage = "https://github.com/zalesyc/budgie-media-player-applet";
    license = lib.licenses.gpl3Plus;
    platforms = lib.platforms.linux;
    maintainers = with lib.maintainers; [ federicoschonborn ];
  };
}