libmicrodns: init at 0.0.10
Required for Chromecast support by VLC.
This commit is contained in:
parent
32e20aa595
commit
98e24eb258
@ -5391,4 +5391,9 @@
|
|||||||
github = "minijackson";
|
github = "minijackson";
|
||||||
name = "Rémi Nicole";
|
name = "Rémi Nicole";
|
||||||
};
|
};
|
||||||
|
shazow = {
|
||||||
|
email = "andrey.petrov@shazow.net";
|
||||||
|
github = "shazow";
|
||||||
|
name = "Andrey Petrov";
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
30
pkgs/development/libraries/libmicrodns/default.nix
Normal file
30
pkgs/development/libraries/libmicrodns/default.nix
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{ stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, autoreconfHook
|
||||||
|
, pkgconfig
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
version = "0.0.10";
|
||||||
|
pname = "libmicrodns";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "videolabs";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1xvl9k49ng35wbsqmnjnyqvkyjf8dcq2ywsq3jp3wh0rgmxhq2fh";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
autoreconfHook
|
||||||
|
pkgconfig
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Minimal mDNS resolver library, used by VLC";
|
||||||
|
homepage = https://github.com/videolabs/libmicrodns;
|
||||||
|
license = licenses.lgpl21;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = [ maintainers.shazow ];
|
||||||
|
};
|
||||||
|
}
|
@ -4095,6 +4095,8 @@ in
|
|||||||
|
|
||||||
libpointmatcher = callPackage ../development/libraries/libpointmatcher { };
|
libpointmatcher = callPackage ../development/libraries/libpointmatcher { };
|
||||||
|
|
||||||
|
libmicrodns = callPackage ../development/libraries/libmicrodns { };
|
||||||
|
|
||||||
libnids = callPackage ../tools/networking/libnids { };
|
libnids = callPackage ../tools/networking/libnids { };
|
||||||
|
|
||||||
libtorrent = callPackage ../tools/networking/p2p/libtorrent { };
|
libtorrent = callPackage ../tools/networking/p2p/libtorrent { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user