nixpkgs/pkgs/by-name/gu/guile-avahi/package.nix

42 lines
962 B
Nix
Raw Normal View History

2023-09-29 05:46:54 +02:00
{ stdenv
, lib
, fetchgit
, avahi
, gmp
2023-10-24 11:55:02 +02:00
, buildPackages
2023-09-29 05:46:54 +02:00
, 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=";
};
2023-09-29 09:10:39 +02:00
strictDeps = true;
2023-10-24 11:55:02 +02:00
depsBuildBuild = [ buildPackages.stdenv.cc ];
2023-09-29 09:10:39 +02:00
nativeBuildInputs = [ autoreconfHook guile pkg-config texinfo ];
2023-09-29 05:46:54 +02:00
buildInputs = [ guile ];
propagatedBuildInputs = [ avahi gmp ];
doCheck = true;
makeFlags = [ "GUILE_AUTO_COMPILE=0" ];
2023-09-29 09:10:39 +02:00
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-Wno-unused-function";
2023-09-29 05:46:54 +02:00
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;
};
}