868ac010a2
Semi-automatic update. These checks were performed: - built on NixOS - found 0.7.1 with grep in /nix/store/bl4k9m05mbhzwm8r2z6x2aqnqd2gdml0-libinfinity-0.7.1 - found 0.7.1 in filename of file in /nix/store/bl4k9m05mbhzwm8r2z6x2aqnqd2gdml0-libinfinity-0.7.1 cc "@phreedom"
50 lines
1.6 KiB
Nix
50 lines
1.6 KiB
Nix
{ gtkWidgets ? false # build GTK widgets for libinfinity
|
|
, daemon ? false # build infinote daemon
|
|
, documentation ? false # build documentation
|
|
, avahiSupport ? false # build support for Avahi in libinfinity
|
|
, stdenv, fetchurl, pkgconfig, glib, libxml2, gnutls, gsasl
|
|
, gtk2 ? null, gtkdoc ? null, avahi ? null, libdaemon ? null, libidn, gss
|
|
, libintlOrEmpty }:
|
|
|
|
let
|
|
edf = flag: feature: (if flag then "--with-" else "--without-") + feature;
|
|
optional = cond: elem: assert cond -> elem != null; if cond then [elem] else [];
|
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "libinfinity-0.7.1";
|
|
src = fetchurl {
|
|
url = "http://releases.0x539.de/libinfinity/${name}.tar.gz";
|
|
sha256 = "1jw2fhrcbpyz99bij07iyhy9ffyqdn87vl8cb1qz897y3f2f0vk2";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ glib libxml2 gsasl libidn gss libintlOrEmpty ]
|
|
++ optional gtkWidgets gtk2
|
|
++ optional documentation gtkdoc
|
|
++ optional avahiSupport avahi
|
|
++ optional daemon libdaemon;
|
|
|
|
propagatedBuildInputs = [ gnutls ];
|
|
|
|
configureFlags = ''
|
|
${if documentation then "--enable-gtk-doc" else "--disable-gtk-doc"}
|
|
${edf gtkWidgets "inftextgtk"}
|
|
${edf gtkWidgets "infgtk"}
|
|
${edf daemon "infinoted"}
|
|
${edf daemon "libdaemon"}
|
|
${edf avahiSupport "avahi"}
|
|
'';
|
|
|
|
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-lintl";
|
|
|
|
meta = {
|
|
homepage = http://gobby.0x539.de/;
|
|
description = "An implementation of the Infinote protocol written in GObject-based C";
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
|
maintainers = [ stdenv.lib.maintainers.phreedom ];
|
|
platforms = with stdenv.lib.platforms; linux ++ darwin;
|
|
};
|
|
|
|
}
|