nixpkgs/pkgs/development/libraries/gupnp-av/default.nix

23 lines
660 B
Nix
Raw Normal View History

2015-08-03 20:54:38 +00:00
{ stdenv, fetchurl, pkgconfig, gupnp, glib, libxml2 }:
stdenv.mkDerivation rec {
name = "gupnp-av-${version}";
majorVersion = "0.12";
2017-08-30 13:45:24 +00:00
version = "${majorVersion}.10";
2015-08-03 20:54:38 +00:00
src = fetchurl {
2015-08-03 20:54:38 +00:00
url = "mirror://gnome/sources/gupnp-av/${majorVersion}/${name}.tar.xz";
2017-08-30 13:45:24 +00:00
sha256 = "0nmq6wlbfsssanv3jgv2z0nhfkv8vzfr3gq5qa8svryvvn2fyf40";
};
2015-08-03 20:54:38 +00:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gupnp glib libxml2 ];
meta = {
homepage = http://gupnp.org/;
2014-11-11 13:20:43 +00:00
description = "A collection of helpers for building AV (audio/video) applications using GUPnP";
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.linux;
};
2015-08-03 20:54:38 +00:00
}