summary refs log tree commit diff
path: root/pkgs/development/libraries/gupnp-dlna/default.nix
blob: 75818f756921ab67f9629cba574c09c5fa100869 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, pkgconfig,  gobjectIntrospection, gupnp, gst-plugins-base }:

stdenv.mkDerivation rec {
  name = "gupnp-dlna-${version}";
  majorVersion = "0.10";
  version = "${majorVersion}.5";

  src = fetchurl {
    url = "mirror://gnome/sources/gupnp-dlna/${majorVersion}/${name}.tar.xz";
    sha256 = "0spzd2saax7w776p5laixdam6d7smyynr9qszhbmq7f14y13cghj";
  };

  nativeBuildInputs = [ pkgconfig gobjectIntrospection ];
  buildInputs = [ gupnp gst-plugins-base ];

  meta = {
    homepage = https://wiki.gnome.org/Projects/GUPnP/;
    description = "Library to ease DLNA-related bits for applications using GUPnP";
    license = stdenv.lib.licenses.gpl2;
    platforms = stdenv.lib.platforms.linux;
  };
}