Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-06-23 | Apply OS checks to host platform, not build | Alyssa Ross | |
Previously, the build system used uname(1) output when it wanted to check the operating system it was being built for, which meant that it didn't take into-account cross-compilation when the build and host operating systems were different. To fix this, instead of consulting uname output, we consult the host triple, specifically the third "kernel" part. For "kernel"s with stable ABIs, like Linux or Cygwin, we can use a simple ifeq to test whether we're compiling for that system, but for other platforms, like Darwin, FreeBSD, or Solaris, we have to use a more complicated check to take into account the version numbers at the end of the "kernel"s. I couldn't find a way to just strip these version numbers in GNU Make without shelling out, which would be even more ugly IMO. Because these checks differ between kernels, and the patsubst ones are quite fiddly, I've added variables for each host OS we might want to check to make them easier to reuse. | |||
2020-10-18 | Add some missing clean-files | Eelco Dolstra | |
2019-08-27 | nix-daemon.service: add install section. | Piotr Szubiakowski | |
Signed-off-by: Piotr Szubiakowski <pszubiak@eso.org> | |||
2017-05-05 | Figure out the user's home directory if $HOME is not set | Eelco Dolstra | |
2017-04-29 | nix-daemon.service: set XDG_CONFIG_HOME | Jörg Thalheim | |
Otherwise starting nix-daemon fails ● nix-daemon.service - Nix Daemon Loaded: loaded (/nix/store/mnf00a6gc55xl47smk0b32gmi7xpvlfp-nix-1.12pre5308_2f21d522/lib/systemd/system/nix-daemon.service; enabled; vendor preset: enabled) Drop-In: /nix/store/m2rgjp71n4kyp8j5fxgbrlv13scd5vvv-system-units/nix-daemon.service.d └─overrides.conf Active: failed (Result: exit-code) since Sat 2017-04-29 11:29:21 CEST; 9s ago Process: 7299 ExecStart=nix-daemon --daemon (code=exited, status=1/FAILURE) Main PID: 7299 (code=exited, status=1/FAILURE) CPU: 19ms ... systemd[1]: Started Nix Daemon. ... nix-daemon[7299]: error: $XDG_CONFIG_HOME and $HOME are not set ... systemd[1]: nix-daemon.service: Main process exited, code=exited, status=1/FAILURE ... systemd[1]: nix-daemon.service: Unit entered failed state. ... systemd[1]: nix-daemon.service: Failed with result 'exit-code'. ... systemd[1]: nix-daemon.service: Start request repeated too quickly. ... systemd[1]: Failed to start Nix Daemon. ... systemd[1]: nix-daemon.service: Failed with result 'exit-code'. | |||
2016-08-31 | nix-daemon.service: Set $XDG_CACHE_HOME | Eelco Dolstra | |
Nix requires either $HOME or $XDG_CACHE_HOME to be set. | |||
2014-07-16 | Install systemd and Upstart stuff only on Linux | Eelco Dolstra | |
2014-04-08 | Ensure that systemd units to into lib, not lib64 | Eelco Dolstra | |
http://hydra.nixos.org/build/10170940 | |||
2014-04-07 | Install systemd units | Eelco Dolstra | |
2012-10-03 | Rename nix-worker to nix-daemon | Eelco Dolstra | |
2012-05-31 | fixes to nix-worker systemd service descriptor: - remove commented-out lines ↵ | Michel Alexandre Salim | |
- register the file for distribution in Makefile.am | |||
2012-05-31 | On systems with SystemD, install the service descriptor for nix-worker, and ↵ | Michel Alexandre Salim | |
enable and start it |