diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-08-29 20:01:45 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-08-31 23:31:49 -0400 |
commit | 69f6edc1a8596d2cb4c67e0435d35633af6f3cbc (patch) | |
tree | b05bf07326008fc6b7feb6b38a0d652f52e1ef40 /nix/local.mk | |
parent | f5c4db45e95cf8ea23c2c133ed2535ca94a06f7d (diff) | |
download | guix-69f6edc1a8596d2cb4c67e0435d35633af6f3cbc.tar.gz |
build: Add missing guix-gc.timer file to binary tarball.
Partially fixes <https://issues.guix.gnu.org/65117>. * nix/local.mk (nodist_systemdservice_DATA): Add etc/guix-gc.timer.
Diffstat (limited to 'nix/local.mk')
-rw-r--r-- | nix/local.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/nix/local.mk b/nix/local.mk index 44a26dd2c8..61d59937e8 100644 --- a/nix/local.mk +++ b/nix/local.mk @@ -153,8 +153,9 @@ systemdservicedir = $(libdir)/systemd/system nodist_systemdservice_DATA = \ etc/gnu-store.mount \ etc/guix-daemon.service \ - etc/guix-publish.service \ - etc/guix-gc.service + etc/guix-gc.service \ + etc/guix-gc.timer \ + etc/guix-publish.service etc/%.mount: etc/%.mount.in \ $(top_builddir)/config.status |