mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
Merge pull request #257956 from foo-dogsquared/add-guile-avahi
guile-avahi: init at 0.4.1
This commit is contained in:
commit
8d2ddcbe56
39
pkgs/by-name/gu/guile-avahi/package.nix
Normal file
39
pkgs/by-name/gu/guile-avahi/package.nix
Normal file
@ -0,0 +1,39 @@
|
||||
{ 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=";
|
||||
};
|
||||
|
||||
strictDeps = true;
|
||||
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;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user