summaryrefslogtreecommitdiff
path: root/nixos/packages/rygel/default.nix
blob: 4354a754e8a32d3f142ca4bccc2c55de407f5086 (plain)
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
{ stdenv
, fetchurl
, glib
, gnome3
, gobjectIntrospection
, gst_all_1
, gst_plugins ? with gst_all_1; [ gst-plugins-base gst-plugins-good gst-plugins-ugly ]
, gupnp
, gupnp_av
, gupnp_dlna
, intltool
, makeWrapper
, pkgconfig
, sqlite
}:

stdenv.mkDerivation rec {
  name = "rygel-${version}";
  version = "0.28.3";

  enableParallelBuilding = true;

  buildInputs = [
    gnome3.libgee
    gnome3.libmediaart
    gst_all_1.gstreamer
    gupnp
    gupnp_av
    intltool
    makeWrapper
    pkgconfig
    sqlite
  ] ++ gst_plugins;

  propagatedBuildInputs = [
    gnome3.tracker
    gobjectIntrospection
  ];

  preConfigure = ''
    export PKG_CONFIG_PATH="${gupnp_dlna}/lib/pkgconfig:$PKG_CONFIG_PATH"
  '';

  postInstall = ''
      wrapProgram "$out/bin/rygel" \
        --prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0"
    '';

  src = fetchurl {
    url = "http://ftp.gnome.org/pub/GNOME/sources/rygel/0.28/rygel-${version}.tar.xz";
    sha256 = "bedb76ecb1f36b721914b5c65934f8cd01f281f9ab40c22c583902c22f169c77";
  };
}