diff options
Diffstat (limited to 'nix.spec.in')
-rw-r--r-- | nix.spec.in | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/nix.spec.in b/nix.spec.in index cbbd65e917eb..44ea8d7c9476 100644 --- a/nix.spec.in +++ b/nix.spec.in @@ -137,6 +137,14 @@ done # (until this is fixed in the relevant Makefile) chmod -x $RPM_BUILD_ROOT%{_sysconfdir}/profile.d/nix.sh +# systemd not available on RHEL yet +%if ! 0%{?rhel} +# install systemd service descriptor +mkdir -p $RPM_BUILD_ROOT%{_prefix}/lib/systemd/system +cp -p misc/systemd/nix-worker.service \ + $RPM_BUILD_ROOT%{_prefix}/lib/systemd/system/ +%endif + # Copy the byte-compiled mode file by hand cp -p misc/emacs/nix-mode.elc $RPM_BUILD_ROOT%{_emacs_sitelispdir}/ @@ -165,6 +173,11 @@ done %post chgrp %{nixbld_group} /nix/store chmod 1775 /nix/store +%if ! 0%{?rhel} +# Enable and start Nix worker +systemctl enable nix-worker.service +systemctl start nix-worker.service +%endif %files %doc COPYING AUTHORS README @@ -174,6 +187,9 @@ chmod 1775 /nix/store %{perl_vendorarch}/* %exclude %dir %{perl_vendorarch}/auto/ %{_prefix}/libexec/* +%if ! 0%{?rhel} +%{_prefix}/lib/systemd/system/nix-worker.service +%endif %{_datadir}/emacs/site-lisp/nix-mode.el %{_datadir}/nix %{_mandir}/man1/nix-*.1* |