docker-nixpkgs/images/docker-compose/default.nix
zimbatm fd0323f40f
move images into ./images
having a folder with all of the images makes things easier
2019-03-16 14:50:00 +01:00

11 lines
202 B
Nix

{ buildCLIImage
, docker-compose ? null
, python3Packages
}:
buildCLIImage {
drv =
if docker-compose == null
then python3Packages.docker_compose
else docker-compose # nixos 19.03+
;
}