list-packages: Add status link only for systems supported on Hydra.
[jackhill/guix/guix.git] / daemon.am
CommitLineData
233e7676 1# GNU Guix --- Functional package management for GNU
f8bcf997 2# Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
c2033df4 3#
233e7676 4# This file is part of GNU Guix.
c2033df4 5#
233e7676 6# GNU Guix is free software; you can redistribute it and/or modify it
c2033df4
LC
7# under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 3 of the License, or (at
9# your option) any later version.
10#
233e7676 11# GNU Guix is distributed in the hope that it will be useful, but
c2033df4
LC
12# WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
233e7676 17# along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
c2033df4
LC
18
19#
20# Integration of the `guix-daemon' code taken from upstream Nix.
21#
22
931c132a 23BUILT_SOURCES += nix/libstore/schema.sql.hh
c2033df4
LC
24CLEANFILES += $(BUILT_SOURCES)
25
26noinst_LIBRARIES = libformat.a libutil.a libstore.a
27
06ea5c8f
LC
28# Use '-std=c++0x' for 'std::shared_ptr'.
29AM_CXXFLAGS = -Wall -std=c++0x
996ed6ac 30
c2033df4
LC
31libformat_a_SOURCES = \
32 nix/boost/format/free_funcs.cc \
33 nix/boost/format/parsing.cc \
34 nix/boost/format/format_implementation.cc
35
36libformat_headers = \
c2033df4 37 nix/boost/throw_exception.hpp \
c2033df4
LC
38 nix/boost/format.hpp \
39 nix/boost/assert.hpp \
40 nix/boost/format/macros_default.hpp \
41 nix/boost/format/format_fwd.hpp \
42 nix/boost/format/format_class.hpp \
43 nix/boost/format/exceptions.hpp \
44 nix/boost/format/group.hpp \
45 nix/boost/format/feed_args.hpp \
46 nix/boost/format/internals_fwd.hpp \
7864504f 47 nix/boost/format/internals.hpp
c2033df4
LC
48
49libformat_a_CPPFLAGS = \
50 -I$(top_srcdir)/nix
51
52libutil_a_SOURCES = \
53 nix/libutil/archive.cc \
d43eb499 54 nix/libutil/affinity.cc \
c2033df4 55 nix/libutil/serialise.cc \
c2033df4
LC
56 nix/libutil/util.cc \
57 nix/libutil/xml-writer.cc \
58 nix/libutil/hash.cc \
59 nix/libutil/gcrypt-hash.cc
60
61libutil_headers = \
d43eb499 62 nix/libutil/affinity.hh \
c2033df4
LC
63 nix/libutil/hash.hh \
64 nix/libutil/serialise.hh \
65 nix/libutil/xml-writer.hh \
66 nix/libutil/util.hh \
67 nix/libutil/archive.hh \
68 nix/libutil/types.hh \
69 nix/libutil/gcrypt-hash.hh \
70 nix/libutil/md5.h \
71 nix/libutil/sha1.h \
72 nix/libutil/sha256.h
73
74libutil_a_CPPFLAGS = \
75 -I$(top_builddir)/nix \
76 -I$(top_srcdir)/nix/libutil \
77 $(libformat_a_CPPFLAGS)
78
79libstore_a_SOURCES = \
80 nix/libstore/gc.cc \
81 nix/libstore/globals.cc \
82 nix/libstore/misc.cc \
83 nix/libstore/references.cc \
84 nix/libstore/store-api.cc \
85 nix/libstore/optimise-store.cc \
86 nix/libstore/local-store.cc \
87 nix/libstore/remote-store.cc \
88 nix/libstore/build.cc \
89 nix/libstore/pathlocks.cc \
90 nix/libstore/derivations.cc
91
92libstore_headers = \
93 nix/libstore/references.hh \
94 nix/libstore/pathlocks.hh \
95 nix/libstore/globals.hh \
96 nix/libstore/schema.sql.hh \
97 nix/libstore/worker-protocol.hh \
98 nix/libstore/remote-store.hh \
99 nix/libstore/derivations.hh \
100 nix/libstore/misc.hh \
101 nix/libstore/local-store.hh \
102 nix/libstore/store-api.hh
103
104libstore_a_CPPFLAGS = \
105 $(libutil_a_CPPFLAGS) \
106 -I$(top_srcdir)/nix/libstore \
0442d345 107 -I$(top_builddir)/nix/libstore \
c2033df4
LC
108 -DNIX_STORE_DIR=\"$(storedir)\" \
109 -DNIX_DATA_DIR=\"$(datadir)\" \
f5768afa
LC
110 -DNIX_STATE_DIR=\"$(localstatedir)/guix\" \
111 -DNIX_LOG_DIR=\"$(localstatedir)/log/guix\" \
526382ff 112 -DNIX_CONF_DIR=\"$(sysconfdir)/guix\" \
c2033df4
LC
113 -DNIX_LIBEXEC_DIR=\"$(libexecdir)\" \
114 -DNIX_BIN_DIR=\"$(bindir)\" \
526382ff 115 -DOPENSSL_PATH="\"guix-authenticate\""
c2033df4 116
06ea5c8f 117libstore_a_CXXFLAGS = $(AM_CXXFLAGS) \
c2033df4
LC
118 $(SQLITE3_CFLAGS) $(LIBGCRYPT_CFLAGS)
119
120bin_PROGRAMS = guix-daemon
a7a4e6a4 121sbin_PROGRAMS = guix-register
c2033df4
LC
122
123guix_daemon_SOURCES = \
124 nix/nix-daemon/nix-daemon.cc \
125 nix/nix-daemon/guix-daemon.cc
126
127guix_daemon_CPPFLAGS = \
128 $(libutil_a_CPPFLAGS) \
129 -I$(top_srcdir)/nix/libstore
130
131guix_daemon_LDADD = \
132 libstore.a libutil.a libformat.a -lbz2 \
133 $(SQLITE3_LIBS) $(LIBGCRYPT_LIBS)
134
351782e2
LC
135guix_daemon_headers = \
136 nix/nix-daemon/shared.hh
c2033df4 137
a7a4e6a4
LC
138
139guix_register_SOURCES = \
140 nix/guix-register/guix-register.cc
141
142guix_register_CPPFLAGS = \
143 $(libutil_a_CPPFLAGS) \
144 $(libstore_a_CPPFLAGS) \
145 -I$(top_srcdir)/nix/libstore
146
147# XXX: Should we start using shared libs?
148guix_register_LDADD = \
149 libstore.a libutil.a libformat.a -lbz2 \
150 $(SQLITE3_LIBS) $(LIBGCRYPT_LIBS)
151
152
c2033df4 153noinst_HEADERS = \
351782e2
LC
154 $(libformat_headers) $(libutil_headers) $(libstore_headers) \
155 $(guix_daemon_headers)
c2033df4
LC
156
157nix/libstore/schema.sql.hh: nix/libstore/schema.sql
158 $(GUILE) --no-auto-compile -c \
159 "(use-modules (rnrs io ports)) \
160 (call-with-output-file \"$@\" \
161 (lambda (out) \
162 (call-with-input-file \"$^\" \
163 (lambda (in) \
164 (write (get-string-all in) out)))))"
165
f5c82e15 166nodist_pkglibexec_SCRIPTS = \
f65cf81a 167 nix/scripts/list-runtime-roots \
2c74fde0 168 nix/scripts/substitute
f5c82e15 169
49e6291a
LC
170if BUILD_DAEMON_OFFLOAD
171
172nodist_pkglibexec_SCRIPTS += \
173 nix/scripts/offload
174
175endif BUILD_DAEMON_OFFLOAD
176
177
7edccf4d
LC
178# XXX: It'd be better to hide it in $(pkglibexecdir).
179nodist_libexec_SCRIPTS = \
180 nix/scripts/guix-authenticate
181
c2033df4
LC
182EXTRA_DIST += \
183 nix/libstore/schema.sql \
184 nix/AUTHORS \
185 nix/COPYING
d23077dc 186
d23077dc 187AM_TESTS_ENVIRONMENT += \
69cfce50 188 top_builddir="$(abs_top_builddir)"
d23077dc
LC
189
190TESTS += \
191 tests/guix-daemon.sh
192
193clean-local:
03fa2758
LC
194 -if test -d "$(GUIX_TEST_ROOT)"; then \
195 find "$(GUIX_TEST_ROOT)" | xargs chmod +w; \
196 fi
69cfce50 197 -rm -rf "$(GUIX_TEST_ROOT)"