arion/flake.nix
2021-05-18 12:54:53 +02:00

28 lines
507 B
Nix

{
description = "Arion - use Docker Compose via Nix";
outputs = { self, nixpkgs }:
let
lib = import (nixpkgs + "/lib");
systems = [
"aarch64-linux"
"x86_64-darwin"
"x86_64-linux"
];
in {
packages = lib.genAttrs systems (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
arion = import ./nix/arion.nix { inherit pkgs; };
});
defaultPackage = lib.genAttrs systems (system:
self.packages.${system}.arion
);
};
}