guile-avahi: init at 0.4.1

This commit is contained in:
Gabriel Arazas 2023-09-29 11:46:54 +08:00 committed by Weijia Wang
parent 0d7a1fd3fd
commit cef731a640

View File

@ -0,0 +1,37 @@
{ stdenv
, lib
, fetchgit
, avahi
, gmp
, autoreconfHook
, pkg-config
, texinfo
, guile
}:
stdenv.mkDerivation rec {
pname = "guile-avahi";
version = "0.4.1";
src = fetchgit {
url = "git://git.sv.gnu.org/guile-avahi.git";
rev = "v${version}";
hash = "sha256-Yr+OiqaGv6DgsjxSoc4sAjy4OO/D+Q50vdSTPEeIrV8=";
};
nativeBuildInputs = [ autoreconfHook pkg-config texinfo ];
buildInputs = [ guile ];
propagatedBuildInputs = [ avahi gmp ];
doCheck = true;
makeFlags = [ "GUILE_AUTO_COMPILE=0" ];
meta = with lib; {
description = "Bindings to Avahi for GNU Guile";
homepage = "https://www.nongnu.org/guile-avahi/";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ foo-dogsquared ];
platforms = guile.meta.platforms;
};
}