unison/nix/docker.nix
2024-06-01 01:54:07 -06:00

12 lines
237 B
Nix

{
pkgs,
haskell-nix,
}: {
ucm = pkgs.dockerTools.buildLayeredImage {
name = "ucm";
tag = "latest";
contents = with pkgs; [cacert fzf];
config.Cmd = ["${haskell-nix."unison-cli-main:exe:unison"}/bin/unison"];
};
}