blob: c75d4ee0f079eb9a9c62b424f6654ad62775f997 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
{ 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.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;
};
}
|