about summary refs log tree commit diff
path: root/tools/nixery/prepare-image
AgeCommit message (Collapse)AuthorFilesLines
2021-08-25 feat(prepare-image): Ensure /usr/bin/env is always presentVincent Ambo1-0/+12
This is required by common patterns in shell scripts. There are some caveats around this. Adding logic to filter whether coreutils is included in an image would slow down the Nix evaluation, so the link is currently created even in cases where it doesn't point to anything. Fixes #109
2021-04-30 chore: Update default NixOS channel to nixos-20.09Vincent Ambo1-1/+1
2021-04-14 chore(nix): update channel URLJerome Petazzoni1-1/+1
It looks like NixPkgs channels have moved. Fixing this URL allows using nixos-20.09, for instance.
2020-05-01 chore(nix): update channel 19.03 -> 20.03Raphael Borun Das Gupta1-1/+1
Use a NixOS / NixPkgs release that's actually being supported and regularly updated.
2019-11-27 refactor: Reshuffle file structure for better code layoutVincent Ambo3-0/+247
This gets rid of the package called "server" and instead moves everything into the project root, such that Go actually builds us a binary called `nixery`. This is the first step towards factoring out CLI-based functionality for Nixery.