mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
33926ed1e7
Add a :log command that shows logs for a derivation. Closes https://github.com/NixOS/nix/issues/3504 Co-authored-by: Taeer Bar-Yam <taeer@bar-yam.me>
8 lines
144 B
Nix
8 lines
144 B
Nix
with import ./config.nix;
|
|
|
|
mkDerivation {
|
|
name = "simple-failing";
|
|
builder = ./simple-failing.builder.sh;
|
|
PATH = "";
|
|
goodPath = path;
|
|
}
|