about summary refs log tree commit diff
path: root/pkgs/applications/audio/clementine/default.nix
blob: 4b56052e47825c4bb48d6b0810d86b74d18608b3 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{ stdenv, fetchurl, boost, cmake, gettext, gstreamer, gst_plugins_base
, liblastfm, qt4, taglib, fftw, glew, qjson, sqlite, libgpod, libplist
, usbmuxd, libmtp, gvfs, libcdio, protobuf, libspotify, qca2, pkgconfig
, sparsehash, config, makeWrapper, gst_plugins }:

let 
  version = "1.2.3";

  withSpotify = config.clementine.spotify or false;

  wrappedExeName = "clementine";

  wrapped = stdenv.mkDerivation {
    name = "clementine-wrapped-${version}";

    src = fetchurl {
      url = https://github.com/clementine-player/Clementine/archive/1.2.3.tar.gz;
      sha256 = "1gx1109i4pylz6x7gvp4rdzc6dvh0w6in6hfbygw01d08l26bxbx";
    };

    patches = [ ./clementine-1.2.1-include-paths.patch ];

    buildInputs = [
      boost
      cmake
      fftw
      gettext
      glew
      gst_plugins_base
      gstreamer
      gvfs
      libcdio
      libgpod
      liblastfm
      libmtp
      libplist
      pkgconfig
      protobuf
      qca2
      qjson
      qt4
      sparsehash
      sqlite
      taglib
      usbmuxd
    ];

    enableParallelBuilding = true;
  };

in

stdenv.mkDerivation {
  name = "clementine-${version}";

  src = ./.;

  patches = [
    ./clementine-1.2.1-include-paths.patch
    ./clementine-dbus-namespace.patch
  ];

  buildInputs = [
    wrapped
    makeWrapper
  ] ++ gst_plugins
    ++ stdenv.lib.optional withSpotify libspotify;

  installPhase = ''
    mkdir -p $out
    cp -a ${wrapped}/* $out
    chmod -R u+w-t $out

    wrapProgram "$out/bin/${wrappedExeName}" \
        --prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH"
  '';

  preferLocalBuild = true;
  dontPatchELF = true;
  dontStrip = true;

  meta = with stdenv.lib; {
    homepage = "http://www.clementine-player.org";
    description = "A multiplatform music player"
      + " ("
      + concatStrings (optionals (withSpotify) ["with spotify, "])
      + "with gstreamer plugins: "
      + concatStrings (intersperse ", " (map (x: x.name) gst_plugins))
      + ")";
    license = licenses.gpl3Plus;
    platforms = platforms.linux;
    maintainers = [ maintainers.ttuegel ];
    # libspotify is unfree
    hydraPlatforms = optionals (!withSpotify) platforms.linux;
  };
}