mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
76999cc40e
This makes the command ‘nix-env -qa -f. --arg config '{skipAliases = true;}'’ work in Nixpkgs. Misc... - qtikz: use libsForQt5.callPackage This ensures we get the right poppler. - rewrites: docbook5_xsl -> docbook_xsl_ns docbook_xml_xslt -> docbook_xsl diffpdf: fixup
23 lines
717 B
Nix
23 lines
717 B
Nix
{ 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;
|
|
};
|
|
}
|