about summary refs log tree commit diff
path: root/pkgs/applications/audio/deadbeef/plugins/playlist-manager.nix
blob: cf82697988941c8633d7703b814a3da6a81a6ae9 (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
, pkg-config
, deadbeef
, gtk3
}:

stdenv.mkDerivation {
  pname = "deadbeef-playlist-manager-plugin";
  version = "unstable-2021-05-02";

  src = fetchFromGitHub {
    owner = "kpcee";
    repo = "deadbeef-playlist-manager";
    rev = "b1393022b2d9ea0a19b845420146e0fc56cd9c0a";
    sha256 = "sha256-dsKthlQ0EuX4VhO8K9VTyX3zN8ytzDUbSi/xSMB4xRw=";
  };

  nativeBuildInputs = [
    pkg-config
  ];

  buildInputs = [
    deadbeef
    gtk3
  ];

  installPhase = ''
    runHook preInstall

    mkdir -p $out/lib/deadbeef/
    cp *.so $out/lib/deadbeef/

    runHook postInstall
  '';

  buildFlags = [
    "CFLAGS=-I${deadbeef}/include/deadbeef"
    "gtk3"
  ];

  meta = with lib; {
    description = "Removes duplicate and vanished files from the current playlist";
    homepage = "https://github.com/kpcee/deadbeef-playlist-manager";
    license = licenses.gpl2Plus;
    maintainers = [ maintainers.cmm ];
    platforms = platforms.linux;
  };
}