mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
gupnp_dlna: init at 0.10.5
This commit is contained in:
parent
7d33f7fba8
commit
6c6f6a4008
22
pkgs/development/libraries/gupnp-dlna/default.nix
Normal file
22
pkgs/development/libraries/gupnp-dlna/default.nix
Normal file
|
@ -0,0 +1,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;
|
||||
};
|
||||
}
|
|
@ -2496,6 +2496,8 @@ with pkgs;
|
|||
|
||||
gupnp_av = callPackage ../development/libraries/gupnp-av {};
|
||||
|
||||
gupnp_dlna = callPackage ../development/libraries/gupnp-dlna {};
|
||||
|
||||
gupnp_igd = callPackage ../development/libraries/gupnp-igd {};
|
||||
|
||||
gupnp-tools = callPackage ../tools/networking/gupnp-tools {};
|
||||
|
|
Loading…
Reference in a new issue