Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
50 lines
1014 B
Nix
50 lines
1014 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchgit,
|
|
avahi,
|
|
gmp,
|
|
buildPackages,
|
|
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=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
guile
|
|
pkg-config
|
|
texinfo
|
|
];
|
|
buildInputs = [ guile ];
|
|
propagatedBuildInputs = [
|
|
avahi
|
|
gmp
|
|
];
|
|
|
|
doCheck = true;
|
|
makeFlags = [ "GUILE_AUTO_COMPILE=0" ];
|
|
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.hostPlatform.isDarwin "-Wno-unused-function";
|
|
|
|
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;
|
|
};
|
|
}
|