mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
31 lines
639 B
Nix
31 lines
639 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mdns";
|
|
version = "1.4.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mjansson";
|
|
repo = "mdns";
|
|
rev = version;
|
|
hash = "sha256-2uv+Ibnbl6hsdjFqPhcHXbv+nIEIT4+tgtwGndpZCqo=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Public domain mDNS/DNS-SD library in C";
|
|
homepage = "https://github.com/mjansson/mdns";
|
|
changelog = "https://github.com/mjansson/mdns/blob/${src.rev}/CHANGELOG";
|
|
license = licenses.unlicense;
|
|
maintainers = with maintainers; [ hexa ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|