DavHau
DavHau
requirement.txt files can be nested by stating: `-r ./rel/path/to/another_requirements.txt` inside a requirements.txt. Currently this is either ignored or raises an error. The interface of mach-nix would need to be extended/changed...
The resolver picks tzlocal 2.0.0b3 for the following expression. But pip complains because it doesn't agree with 2.0.0b2
If deploying on several hosts, morph crashes if it cannot connect to one of the hosts or if the switch action returns negative. It would be nice if there was...
I recently switched from NixOps to morph. The completely stateless approach of morph was the selling point. Now I notice that morph doesn't really do anything in parallel and therefore...
input: ``` foobarbizbaz.foobarbizbaz.foobarbizbaz.foobarbizbaz.foobarbizbaz.foobarbizbaz.foobarbizbaz.foobarbizbaz.foobarbizbaz ``` output alejandra 2.0.0: ``` foobarbizbaz.foobarbizbaz.foobarbizbaz.foobarbizbaz.foobarbizbaz.foobarbizbaz.foobarbizbaz.foobarbizbaz.foobarbizbaz ``` expected output: ``` foobarbizbaz .foobarbizbaz .foobarbizbaz .foobarbizbaz .foobarbizbaz .foobarbizbaz .foobarbizbaz .foobarbizbaz .foobarbizbaz ```
input: ```nix { foo = f: barbarbarbarbarbarbarbarbarbarbarbarbarbarbar == packageNamecdsacascdacd; } ``` alejandra: ```nix { foo = f: barbarbarbarbarbarbarbarbarbarbarbarbarbarbar == packageNamecdsacascdacd; } ``` This is now surpassing line 80. Alejandra does...
input: ```nix type == "path" && lib.isStorePath (lib.removeSuffix "/" constructedArgs.path) ``` alejandra (1.1.0): ```nix type == "path" && lib.isStorePath (lib.removeSuffix "/" constructedArgs.path) ``` I assume the current logic for multi...
Input: ```nix rec { flakeApps = lib.mapAttrs (appName: app: { type = "app"; program = b.toString app.program; } ) apps; } ``` Alejandra run 1: ```nix rec { flakeApps =...
Here a (modified) example from nixpkgs containing a long argument list followed by a function: ```nix { lib , autoPatchelfHook , alsa-lib , stdenv , libXScrnSaver , makeWrapper , fetchurl...
In the result of this: https://kamadorueda.github.io/alejandra/?before=%27%27%0A++dream2nix.makeOutputs+%7B%0A++++source+%3D+.%2Fdream-lock.json%3B%0A++++%24%7Blib.optionalString+%28dreamLock.sources.%22%24%7BdefaultPackage%7D%22.%22%24%7BdefaultPackageVersion%7D%22.type+%3D%3D+%22unknown%22%29+%27%27%0A++++++sourceOverrides+%3D+oldSources%3A+%7B%0A++++++++++%22%24%7BdefaultPackage%7D%22.%22%24%7BdefaultPackageVersion%7D%22+%3D+.%2F%24%7BsourcePathRelative%7D%3B%0A++++++++%7D%3B%0A++++%27%27%7D%0A++%7D%0A%27%27%0A ... the closing bracket in line 10 is not aligned with the opening bracket in line 4: ```nix '' dream2nix.makeOutputs { source = ./dream-lock.json;...