system: Add default PAM entries for xlock and xscreensaver.
[jackhill/guix/guix.git] / daemon.am
1 # GNU Guix --- Functional package management for GNU
2 # Copyright © 2012, 2013, 2014 Ludovic Courtès <ludo@gnu.org>
3 #
4 # This file is part of GNU Guix.
5 #
6 # GNU Guix is free software; you can redistribute it and/or modify it
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 #
11 # GNU Guix is distributed in the hope that it will be useful, but
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
17 # along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19 #
20 # Integration of the `guix-daemon' code taken from upstream Nix.
21 #
22
23 BUILT_SOURCES += nix/libstore/schema.sql.hh
24 CLEANFILES += $(BUILT_SOURCES)
25
26 noinst_LIBRARIES = libformat.a libutil.a libstore.a
27
28 # Use '-std=c++0x' for 'std::shared_ptr'.
29 AM_CXXFLAGS = -Wall -std=c++0x
30
31 libformat_a_SOURCES = \
32 nix/boost/format/free_funcs.cc \
33 nix/boost/format/parsing.cc \
34 nix/boost/format/format_implementation.cc
35
36 libformat_headers = \
37 nix/boost/throw_exception.hpp \
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 \
47 nix/boost/format/internals.hpp
48
49 libformat_a_CPPFLAGS = \
50 -I$(top_srcdir)/nix
51
52 libutil_a_SOURCES = \
53 nix/libutil/archive.cc \
54 nix/libutil/affinity.cc \
55 nix/libutil/serialise.cc \
56 nix/libutil/util.cc \
57 nix/libutil/xml-writer.cc \
58 nix/libutil/hash.cc \
59 nix/libutil/gcrypt-hash.cc
60
61 libutil_headers = \
62 nix/libutil/affinity.hh \
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
74 libutil_a_CPPFLAGS = \
75 -I$(top_builddir)/nix \
76 -I$(top_srcdir)/nix/libutil \
77 $(libformat_a_CPPFLAGS)
78
79 libstore_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
92 libstore_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
104 libstore_a_CPPFLAGS = \
105 $(libutil_a_CPPFLAGS) \
106 -I$(top_srcdir)/nix/libstore \
107 -I$(top_builddir)/nix/libstore \
108 -DNIX_STORE_DIR=\"$(storedir)\" \
109 -DNIX_DATA_DIR=\"$(datadir)\" \
110 -DNIX_STATE_DIR=\"$(localstatedir)/guix\" \
111 -DNIX_LOG_DIR=\"$(localstatedir)/log/guix\" \
112 -DNIX_CONF_DIR=\"$(sysconfdir)/guix\" \
113 -DNIX_LIBEXEC_DIR=\"$(libexecdir)\" \
114 -DNIX_BIN_DIR=\"$(bindir)\" \
115 -DOPENSSL_PATH="\"guix-authenticate\""
116
117 libstore_a_CXXFLAGS = $(AM_CXXFLAGS) \
118 $(SQLITE3_CFLAGS) $(LIBGCRYPT_CFLAGS)
119
120 bin_PROGRAMS = guix-daemon
121 sbin_PROGRAMS = guix-register
122
123 guix_daemon_SOURCES = \
124 nix/nix-daemon/nix-daemon.cc \
125 nix/nix-daemon/guix-daemon.cc
126
127 guix_daemon_CPPFLAGS = \
128 $(libutil_a_CPPFLAGS) \
129 -I$(top_srcdir)/nix/libstore
130
131 guix_daemon_LDADD = \
132 libstore.a libutil.a libformat.a -lbz2 \
133 $(SQLITE3_LIBS) $(LIBGCRYPT_LIBS)
134
135 guix_daemon_headers = \
136 nix/nix-daemon/shared.hh
137
138
139 guix_register_SOURCES = \
140 nix/guix-register/guix-register.cc
141
142 guix_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?
148 guix_register_LDADD = \
149 libstore.a libutil.a libformat.a -lbz2 \
150 $(SQLITE3_LIBS) $(LIBGCRYPT_LIBS)
151
152
153 noinst_HEADERS = \
154 $(libformat_headers) $(libutil_headers) $(libstore_headers) \
155 $(guix_daemon_headers)
156
157 nix/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
166 nodist_pkglibexec_SCRIPTS = \
167 nix/scripts/list-runtime-roots \
168 nix/scripts/substitute-binary
169
170 if BUILD_DAEMON_OFFLOAD
171
172 nodist_pkglibexec_SCRIPTS += \
173 nix/scripts/offload
174
175 endif BUILD_DAEMON_OFFLOAD
176
177
178 # XXX: It'd be better to hide it in $(pkglibexecdir).
179 nodist_libexec_SCRIPTS = \
180 nix/scripts/guix-authenticate
181
182 EXTRA_DIST += \
183 nix/sync-with-upstream \
184 nix/libstore/schema.sql \
185 nix/AUTHORS \
186 nix/COPYING
187
188 AM_TESTS_ENVIRONMENT += \
189 top_builddir="$(abs_top_builddir)"
190
191 TESTS += \
192 tests/guix-daemon.sh
193
194 clean-local:
195 -if test -d "$(GUIX_TEST_ROOT)"; then \
196 find "$(GUIX_TEST_ROOT)" | xargs chmod +w; \
197 fi
198 -rm -rf "$(GUIX_TEST_ROOT)"