mirror of
https://github.com/rosenpass/rosenpass.git
synced 2025-12-05 20:40:02 -08:00
This implicates a change from nixpkgs-fmt to nixfmt. Nixfmt will become the new standard on nix formatting, sanctioned by the nixpkgs. To verify that these changes are purely in whitespace, but not semantic: git diff --ignore-all-space -w HEAD^! That will only show newline changes, make the diffing somewhat easier. Signed-off-by: wucke13 <wucke13+github@gmail.com>
16 lines
257 B
Nix
16 lines
257 B
Nix
{
|
|
dockerTools,
|
|
buildEnv,
|
|
rosenpass,
|
|
}:
|
|
|
|
dockerTools.buildImage {
|
|
name = rosenpass.name + "-oci";
|
|
copyToRoot = buildEnv {
|
|
name = "image-root";
|
|
paths = [ rosenpass ];
|
|
pathsToLink = [ "/bin" ];
|
|
};
|
|
config.Cmd = [ "/bin/rosenpass" ];
|
|
}
|