lorri
lorri copied to clipboard
Your project's nix-env
Tracking issue for https://github.com/NixOS/nix/issues/2925.
**Describe the bug** I use home-manager's lorri systemd user unit module support. After a longer build run (haskell.nix stuff) i looked into `journalctl --user-unit lorri.service` contained the following message: ```...
Replace the envrc.bash magic and logged-evaluation coordiation with a JSON export and a lorri helper
The environment export and re-import code is quite intense, complicated bash. It is a bit difficult to follow, and tricky to get it right. For example, careful `export` `eval` and...
This failed on master: https://travis-ci.org/target/lorri/jobs/604982303#L1682 ``` ---- tests::trivial_shell_nix stdout ---- thread 'tests::trivial_shell_nix' panicked at 'stdout: stderr:error: file 'nixpkgs' was not found in the Nix search path (add it using $NIX_PATH...
This build failure occurred on a very innocent PR: https://github.com/target/lorri/pull/246 https://travis-ci.org/target/lorri/jobs/618236153#L958 ``` ---- watch::tests::trivial_watch_whole_directory stdout ---- thread 'watch::tests::trivial_watch_whole_directory' panicked at 'assertion failed: file_changed(&watcher, "foo")', src/watch.rs:288:9 note: Some details are omitted,...
**Feature description** When a deserialization error of the protocol between the lorri daemon and a client occurs, lorri should output an error message suggesting that the versions of the daemon...
Both the nix build and the cargo build appear to always build all dependencies from scratch, which leads to build times between 10 and 30 minutes. Example: https://travis-ci.org/target/lorri/builds/626109465
Use-case: User wants to run a command, and ensure it uses the current version of the nix files (as watched by lorri). User doesn’t want to wait for evaluation if...
**Feature description** lorri should report shellHook failures. **Target users** People who use shellHooks. `nix-shell` swallows command failures in shellHooks, lorri does not. This is by design. However, lorri's logs don't...
**Feature description** In the `shellHook` section of a `nix-shell` derivation, any exports of `TZ` environment variables are blocked from occurring. A minimal `nix-shell` that reproduces the issue: ```nix with import...