aboutsummaryrefslogtreecommitdiff
path: root/config-daemon.ac
blob: 9854f1d694f86cdb73dfb60439ae08cd10542224 (about) (plain)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
dnl -*- Autoconf -*- fragment for the C++ daemon.

AC_MSG_CHECKING([whether to build daemon])
AC_MSG_RESULT([$guix_build_daemon])

dnl C++ environment.  This macro must be used unconditionnaly.
AC_PROG_CXX
AM_PROG_AR
AC_LANG([C++])

if test "x$guix_build_daemon" = "xyes"; then

  GUIX_ASSERT_CXX11

  AC_PROG_RANLIB
  AC_CONFIG_HEADERS([nix/config.h])

  dnl Use 64-bit file system calls so that we can support files > 2 GiB.
  AC_SYS_LARGEFILE

  dnl Look for zlib, a required dependency.
  AC_CHECK_LIB([z], [gzdopen], [true],
    [AC_MSG_ERROR([Guix requires zlib.  See http://www.zlib.net/.])])
  AC_CHECK_HEADERS([zlib.h], [true],
    [AC_MSG_ERROR([Guix requires zlib.  See http://www.zlib.net/.])])

  dnl Look for libbz2, an optional dependency.
  AC_CHECK_LIB([bz2], [BZ2_bzWriteOpen], [HAVE_LIBBZ2=yes], [HAVE_LIBBZ2=no])
  if test "x$HAVE_LIBBZ2" = xyes; then
    AC_CHECK_HEADERS([bzlib.h])
    HAVE_LIBBZ2="$ac_cv_header_bzlib_h"
  fi

  dnl Look for SQLite, a required dependency.
  PKG_CHECK_MODULES([SQLITE3], [sqlite3 >= 3.6.19])

  AC_DEFINE_UNQUOTED([SYSTEM], ["$guix_system"],
    [Guix host system type--i.e., platform and OS kernel tuple.])

  case "$LIBGCRYPT_PREFIX" in
    no)
      LIBGCRYPT_CFLAGS=""
      ;;
    *)
      LIBGCRYPT_CFLAGS="-I$LIBGCRYPT_PREFIX/include"
      ;;
  esac

  case "$LIBGCRYPT_LIBDIR" in
    no | "")
      LIBGCRYPT_LIBS="-lgcrypt"
      ;;
    *)
      LIBGCRYPT_LIBS="-L$LIBGCRYPT_LIBDIR -lgcrypt"
      ;;
  esac

  AC_SUBST([LIBGCRYPT_CFLAGS])
  AC_SUBST([LIBGCRYPT_LIBS])

  save_CFLAGS="$CFLAGS"
  save_LDFLAGS="$LDFLAGS"
  CFLAGS="$CFLAGS $LIBGCRYPT_CFLAGS"
  LDFLAGS="$LDFLAGS $LIBGCRYPT_LDFLAGS"

  have_gcrypt=yes
  AC_CHECK_LIB([gcrypt], [gcry_md_open], [:], [have_gcrypt=no])
  AC_CHECK_HEADER([gcrypt.h], [:], [have_gcrypt=no])
  if test "x$have_gcrypt" != "xyes"; then
    AC_MSG_ERROR([GNU libgcrypt not found; please install it.])
  fi

  CFLAGS="$save_CFLAGS"
  LDFLAGS="$save_LDFLAGS"

  dnl Chroot support.
  AC_CHECK_FUNCS([chroot unshare])
  AC_CHECK_HEADERS([sched.h sys/param.h sys/mount.h sys/syscall.h])

  if test "x$ac_cv_func_chroot" != "xyes"; then
    AC_MSG_ERROR(['chroot' function missing, bailing out])
  fi

  dnl lutimes and lchown: used when canonicalizing store items.
  dnl posix_fallocate: used when extracting archives.
  dnl vfork: to speed up spawning of helper programs.
  dnl   `--> now disabled because of unpredictable behavior:
  dnl        see <http://lists.gnu.org/archive/html/guix-devel/2014-05/msg00036.html>
  dnl        and Nix commit f794465c (Nov. 2012).
  dnl sched_setaffinity: to improve RPC locality.
  dnl statvfs: to detect disk-full conditions.
  dnl strsignal: for error reporting.
  dnl statx: fine-grain 'stat' call, new in glibc 2.28.
  AC_CHECK_FUNCS([lutimes lchown posix_fallocate sched_setaffinity \
     statvfs nanosleep strsignal statx])

  dnl Check for <locale>.
  AC_LANG_PUSH(C++)
  AC_CHECK_HEADERS([locale])
  AC_LANG_POP(C++)


  dnl Check whether we have the `personality' syscall, which allows us
  dnl to do i686-linux builds on x86_64-linux machines.
  AC_CHECK_HEADERS([sys/personality.h])

  dnl Determine the appropriate default list of substitute URLs (GnuTLS
  dnl is required so we can default to 'https'.)
  GUIX_SUBSTITUTE_URLS="https://bordeaux.guix.gnu.org https://ci.guix.gnu.org"

  AC_MSG_CHECKING([for default substitute URLs])
  AC_MSG_RESULT([$GUIX_SUBSTITUTE_URLS])
  AC_SUBST([GUIX_SUBSTITUTE_URLS])

  AC_DEFINE_UNQUOTED([GUIX_SUBSTITUTE_URLS], ["$GUIX_SUBSTITUTE_URLS"],
    [Default list of substitute URLs used by 'guix-daemon'.])

  dnl Check for Guile-SSH, which is required by 'guix offload'.
  GUIX_CHECK_GUILE_SSH

  case "x$guix_cv_have_recent_guile_ssh" in
    xyes)
      guix_build_daemon_offload="yes"
      AC_DEFINE([HAVE_DAEMON_OFFLOAD_HOOK], [1],
	[Define if the daemon's 'offload' build hook is being built (requires Guile-SSH).])
      ;;
    *)
      guix_build_daemon_offload="no"
      ;;
  esac

  dnl Temporary directory used to store the daemon's data.
  GUIX_TEST_ROOT_DIRECTORY
  GUIX_TEST_ROOT="$ac_cv_guix_test_root"
  AC_SUBST([GUIX_TEST_ROOT])

  GUIX_CHECK_LOCALSTATEDIR
fi

AM_CONDITIONAL([HAVE_LIBBZ2], [test "x$HAVE_LIBBZ2" = "xyes"])
AM_CONDITIONAL([BUILD_DAEMON], [test "x$guix_build_daemon" = "xyes"])
AM_CONDITIONAL([BUILD_DAEMON_OFFLOAD],			\
  [test "x$guix_build_daemon" = "xyes"			\
   && test "x$guix_build_daemon_offload" = "xyes"])
cjd321")))) (build-system meson-build-system) (arguments `(#:phases (modify-phases %standard-phases (add-after 'unpack 'extend-test-time-outs (lambda _ ;; Multiply some poorly-chosen time-outs for busy build machines. (substitute* "tests/simple/test-node-exponential.c" (("G_TIME_SPAN_SECOND" match) (string-append "10 * " match))) (substitute* "tests/simple/test-buffer-sharing.c" (("g_timeout_add_seconds\\([0-9]+" match) (string-append match "0"))) (substitute* (find-files "tests" "^meson\\.build$") (("timeout ?: [0-9]+" match) (string-append match "0")))))))) ;; These are propagated to satisfy 'gegl-0.4.pc'. (propagated-inputs (list babl glib json-glib)) (inputs ;; All inputs except libjpeg and libpng are optional. (list cairo gdk-pixbuf gexiv2 jasper libjpeg-turbo libnsgif libpng libraw (librsvg-for-system) libspiro libtiff libwebp maxflow openexr-2 pango poppler sdl2)) (native-inputs (list `(,glib "bin") ; for gtester gobject-introspection intltool pkg-config vala)) (home-page "https://gegl.org") (synopsis "Graph based image processing framework") (description "GEGL (Generic Graphics Library) provides infrastructure to do demand based cached non destructive image editing on larger than RAM buffers.") ;; The library itself is licensed under LGPL while the sample commandline ;; application and GUI binary gegl is licensed under GPL. (license (list license:lgpl3+ license:gpl3+)))) ;; gnome-photos does not build against gegl 0.4.46 or newer yet. ;; See also <https://gitlab.gnome.org/GNOME/gnome-photos/-/issues/214>. (define-public babl-0.1.96 (package (inherit babl) (version "0.1.96") (source (origin (method url-fetch) (uri (list (string-append "https://download.gimp.org/pub/babl/" (version-major+minor version) "/babl-" version ".tar.xz") (string-append "https://ftp.gtk.org/pub/babl/" (version-major+minor version) "/babl-" version ".tar.xz") (string-append "ftp://ftp.gtk.org/pub/babl/" (version-major+minor version) "/babl-" version ".tar.xz"))) (sha256 (base32 "1xj5hlmm834lb84rpjlfxbqnm5piswgzhjas4h8z90x9b7j3yrrk")))))) (define-public gegl-0.4.44 (package (inherit gegl) (version "0.4.44") (source (origin (method url-fetch) (uri (list (string-append "https://download.gimp.org/pub/gegl/" (string-take version 3) "/gegl-" version ".tar.xz") (string-append "https://ftp.gtk.org/pub/gegl/" (version-major+minor version) "/gegl-" version ".tar.xz") (string-append "ftp://ftp.gtk.org/pub/gegl/" (version-major+minor version) "/gegl-" version ".tar.xz"))) (sha256 (base32 "09k1sn4h0bakgmq2hgd1iamprngpr81ky3fd9446lh2ycd0xnk0a")))) (propagated-inputs (modify-inputs (package-propagated-inputs gegl) (replace "babl" babl-0.1.96))))) (define-public gimp (package (name "gimp") (version "2.10.38") (source (origin (method url-fetch) (uri (string-append "https://download.gimp.org/pub/gimp/v" (version-major+minor version) "/gimp-" version ".tar.bz2")) (sha256 (base32 "0vl57w9w31cgz6nbkpqfycsnwi5qym87jw31hvz3320wq7p4ba2h")))) (build-system gnu-build-system) (outputs '("out" "doc")) ; 9 MiB of gtk-doc HTML (arguments (list #:modules `((ice-9 popen) (ice-9 rdelim) ,@%default-gnu-modules) #:phases #~(modify-phases %standard-phases (add-after 'unpack 'remove-gcc-reference ;; Avoid reference to GCC. (lambda _ (let* ((port (open-input-pipe "gcc -v 2>&1 | tail -n 1")) (cc-version (read-line port))) (close-pipe port) (substitute* "app/gimp-version.c" (("CC_VERSION") (string-append "\"" cc-version "\""))))))) #:configure-flags #~(list (string-append "--with-html-dir=" #$output "/share/gtk-doc/html") ;; Prevent the build system from running 'gtk-update-icon-cache' ;; which is not needed during the build because Guix runs it at ;; profile creation time. "ac_cv_path_GTK_UPDATE_ICON_CACHE=true" ;; Disable automatic network request on startup to check for ;; version updates. "--disable-check-update" ;; Only Python 2 is supported; disable it. "--disable-python" ;; ./configure requests not to annoy upstream with packaging bugs. "--with-bug-report-url=https://bugs.gnu.org/guix"))) (inputs (list at-spi2-core babl gegl gexiv2 glib glib-networking gtk+-2 libjpeg-turbo libmypaint libtiff libwebp mypaint-brushes-1.3 libexif ;optional, EXIF + XMP support ghostscript ;optional, EPS + PS support lcms ;optional, color management libheif ;optional, HEIF + AVIF support libmng ;optional, MNG support (librsvg-for-system) ;optional, SVG support libxcursor ;optional, Mouse Cursor support openexr-2 ;optional, EXR support openjpeg ;optional, JPEG 2000 support poppler ;optional, PDF support poppler-data)) ;optional, PDF support (native-inputs (list desktop-file-utils `(,glib "bin") ;for glib-compile-resources and gdbus-codegen intltool pkg-config)) (home-page "https://www.gimp.org") (synopsis "GNU Image Manipulation Program") (description "GIMP is an application for image manipulation tasks such as photo retouching, composition and authoring. It supports all common image formats as well as specialized ones. It features a highly customizable interface that is extensible via a plugin system.") (license license:gpl3+))) ; some files are lgplv3 (define-public gimp-next (package (inherit gimp) (name "gimp-next") (version "2.99.18") (source (origin (method url-fetch) (uri (string-append "https://download.gimp.org/pub/gimp/v" (version-major+minor version) "/gimp-" version ".tar.xz")) (sha256 (base32 "0vnvdl7x88njyyxkbgdbhz6jwz1qasrxh0fpwk6x1m609alvf6wc")))) (build-system meson-build-system) (arguments (list #:modules `((ice-9 popen) (ice-9 rdelim) (guix build meson-build-system) (guix build utils)) #:phases #~(modify-phases %standard-phases (add-after 'unpack 'remove-gcc-reference ;; Avoid reference to GCC. (lambda _ (let* ((port (open-input-pipe "gcc -v 2>&1 | tail -n 1")) (cc-version (read-line port))) (close-pipe port) (substitute* "app/gimp-version.c" (("CC_VERSION") (string-append "\"" cc-version "\"")))))) (add-after 'install 'move-doc (lambda* (#:key outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out")) (doc (assoc-ref outputs "doc"))) (mkdir-p (string-append doc "/share")) (rename-file (string-append out "/share/doc") (string-append doc "/share/doc")))))))) (inputs (modify-inputs (package-inputs gimp) (replace "gtk+" gtk+) (prepend libxmu libxt) (prepend python gjs) (prepend libxslt))) (native-inputs (modify-inputs (package-native-inputs gimp) (prepend appstream-glib gi-docgen libarchive))))) (define-public gimp-fourier (package (name "gimp-fourier") (version "0.4.3-2") (source (origin (method url-fetch) (uri (string-append "http://registry.gimp.org/files/fourier-" version ".tar.gz")) (sha256 (base32 "1rpacyad678lqgxa3hh2n0zpg4azs8dpa8q079bqsl12812k9184")))) (build-system gnu-build-system) (arguments `(#:tests? #f ;no tests #:phases (modify-phases %standard-phases ;; FIXME: The gegl package only installs "gegl-0.4.pc", but ;; "gimp-2.0.pc" requires "gegl-0.3.pc", so we just copy it. (replace 'configure (lambda* (#:key inputs #:allow-other-keys) (mkdir-p "tmppkgconfig") (copy-file (search-input-file inputs "/lib/pkgconfig/gegl-0.4.pc") "tmppkgconfig/gegl-0.3.pc") (setenv "PKG_CONFIG_PATH" (string-append "tmppkgconfig:" (or (getenv "PKG_CONFIG_PATH") ""))) #t)) (add-after 'unpack 'set-prefix (lambda* (#:key outputs #:allow-other-keys) ;; gimptool-2.0 does not allow us to install to any target ;; directory. (let ((target (string-append (assoc-ref outputs "out") "/lib/gimp/" (car (string-split ,(package-version gimp) #\.)) ".0/plug-ins"))) (substitute* "Makefile" (("\\$\\(PLUGIN_INSTALL\\) fourier") (string-append "cp fourier " target))) (mkdir-p target)) #t))))) (inputs (list fftw gimp ;; needed by gimp-2.0.pc gdk-pixbuf gegl cairo glib ;; needed by gimpui-2.0.pc gtk+-2)) (native-inputs (list pkg-config)) (home-page "https://www.lprp.fr/gimp_plugin_en/#fourier") (synopsis "GIMP plug-in to edit image in fourier space") (description "This package provides a simple plug-in to apply the fourier transform on an image, allowing you to work with the transformed image inside GIMP. You can draw or apply filters in fourier space and get the modified image with an inverse fourier transform.") (license license:gpl3+))) (define-public libmypaint (package (name "libmypaint") (version "1.6.1") (source (origin (method url-fetch) (uri (string-append "https://github.com/mypaint/libmypaint/" "releases/download/v" version "/libmypaint-" version ".tar.xz")) (sha256 (base32 "0priwpmc7dizccqvn21ig6d649bprl3xl1hmjj7nddznjgr585vl")))) (build-system gnu-build-system) (native-inputs (list intltool pkg-config)) ;; As needed by 'libmypaint.pc'. (propagated-inputs (list json-c gobject-introspection)) (inputs (list glib)) (synopsis "Artistic brushes library") (description "Libmypaint, also called \"brushlib\", is a library for making brushstrokes which is used by MyPaint and GIMP.") (home-page "http://mypaint.org") (license license:isc))) (define-public mypaint-brushes (package (name "mypaint-brushes") (version "2.0.2") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/mypaint/mypaint-brushes") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0kcqz13vzpy24dhmrx9hbs6s7hqb8y305vciznm15h277sabpmw9")))) (build-system gnu-build-system) (native-inputs (list autoconf automake)) (synopsis "Default brushes for MyPaint") (description "This package provides the default set of brushes for MyPaint.") (home-page "https://github.com/mypaint/mypaint-brushes/") ;; Scripts are distributed under GPL2+ terms, brushes are provided as ;; public domain or under CC0 terms. (license (list license:gpl2+ license:cc0 license:public-domain)))) (define-public mypaint-brushes-1.3 (package (inherit mypaint-brushes) (name "mypaint-brushes") (version "1.3.1") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/mypaint/mypaint-brushes") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1c95l1vfz7sbrdlzrbz7h1p6s1k113kyjfd9wfnxlm0p6562cz3j")))))) (define-public gimp-resynthesizer ;; GIMP does not respect any plugin search path environment variable, so after ;; installation users have to edit their GIMP settings to include ;; "$HOME/.guix-profile/lib/gimp/2.0/plug-ins/" in ;; “Edit->Preferences->Folders->Plug Ins”. (package (name "gimp-resynthesizer") (version "2.0.3") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/bootchk/resynthesizer") (commit (string-append "v" version)))) (sha256 (base32 "1jwc8bhhm21xhrgw56nzbma6fwg59gc8anlmyns7jdiw83y0zx3j")) (file-name (git-file-name name version)))) (build-system gnu-build-system) (arguments `( ;; Turn off tests to avoid: ;; make[1]: *** No rule to make target '../src/resynth-gui.c', needed by 'resynthesizer.pot'. Stop. #:tests? #f #:phases (modify-phases %standard-phases (add-after 'unpack 'set-env (lambda _ (setenv "CONFIG_SHELL" (which "sh")) #t)) (add-after 'configure 'set-prefix ;; Install plugin under $prefix, not under GIMP's libdir. (lambda* (#:key outputs #:allow-other-keys) (let ((target (string-append (assoc-ref outputs "out") "/lib/gimp/" ,(version-major (package-version gimp)) ".0"))) (substitute* (list "src/resynthesizer/Makefile" "src/resynthesizer-gui/Makefile") (("GIMP_LIBDIR = .*") (string-append "GIMP_LIBDIR = " target "\n"))) (mkdir-p target) #t)))))) (native-inputs ;; avoid ./autogen.sh: ./configure: /bin/sh: bad interpreter: ;; No such file or directory `(("autoconf" ,autoconf-wrapper) ("automake" ,automake) ("glib" ,glib "bin") ; glib-gettextize ("intltool" ,intltool) ("pkg-config" ,pkg-config))) (inputs (list gimp gdk-pixbuf ; needed by gimp-2.0.pc cairo gegl gtk+-2 ; needed by gimpui-2.0.pc glib)) (home-page "https://github.com/bootchk/resynthesizer") (synopsis "GIMP plugins for texture synthesis") (description "This package provides resynthesizer plugins for GIMP, which encompasses tools for healing selections (content-aware fill), enlarging the canvas and healing the border, increasing the resolution while adding detail, and transferring the style of an image.") (license license:gpl3+)))