about summary refs log tree commit diff
path: root/default.nix (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2019-12-09 r/111 refactor: Move CI setup to separate Nix fileVincent Ambo1-22/+0
Instead of polluting the repository namespace with the list of CI projects, move that to a separate file. Currently the list of projects to be built by CI is still hardcoded, but this will be fixed soon.
2019-12-09 r/110 fix(overrides): Fix package importing for kontemplateVincent Ambo2-4/+5
2019-12-09 r/109 fix(build): Install cachix from third_partyVincent Ambo1-1/+1
2019-12-09 r/108 fix(third_party): Expose various other missing dependenciesVincent Ambo5-5/+10
2019-12-09 r/107 fix(third_party): Expose missing dependencies for NixeryVincent Ambo1-1/+17
2019-12-09 r/106 fix(third_party): Shuffle code around to be compatible with readTreeVincent Ambo5-8/+8
As per the previous commit these files were no longer being imported, which is now fixed by moving them into separate subfolders.
2019-12-09 r/105 fix(read-tree): Don't import `default.nix` sibling expressionVincent Ambo1-3/+5
If a folder contains a `default.nix`, Nix expressions contained in adjacent files should not be imported (they might be things like a `shell.nix` or a `deps.nix` which do not evaluate to derivations). The tree traversal still continues for all children folders of a folder with a `default.nix`.
2019-12-09 r/104 fix(writeElispBin): Add required nixpkgs attributes for elispVincent Ambo2-3/